mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
9 lines
339 B
Kotlin
Vendored
9 lines
339 B
Kotlin
Vendored
abstract class <!IMPLEMENTING_FUNCTION_INTERFACE!>A<!> : () -> Unit
|
|
|
|
<!IMPLEMENTING_FUNCTION_INTERFACE!>object B<!> : (String, Int) -> Long {
|
|
override fun invoke(a: String, B: Int) = 23L
|
|
}
|
|
|
|
abstract class <!IMPLEMENTING_FUNCTION_INTERFACE!>C<!> : kotlin.Function1<Any, Int>
|
|
|
|
abstract class <!IMPLEMENTING_FUNCTION_INTERFACE!>D<!> : C() |