Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
psi
/
funInterfaceDeclaration.kt
blob: 74c549bdb29ce19bc9de59f105736a3bd712f987 [
file
]
package
test
class
FunInterfaceDeclaration
{
@Suppress
(
"UNSUPPORTED_FEATURE"
)
fun
interface
KRunnable
{
fun invoke
()
}
@Suppress
(
"UNSUPPORTED_FEATURE"
)
fun
interface
GenericKRunnable
<
T
,
R
>
{
fun invoke
(
t
:
T
):
R
}
}