Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
traitNullableFunction.kt.after
blob: 568c9e50dd0c47c6eda8a14edd264ff9d5e25ba8 [
file
]
interface
Some
{
fun foo
(
some
:
Int
?)
:
Int
}
class
SomeOther
:
Some
{
override
fun foo
(
some
:
Int
?):
Int
{
<selection><caret>
throw
UnsupportedOperationException
()</
selection
>
}
}