10 lines
176 B
Kotlin
Vendored
10 lines
176 B
Kotlin
Vendored
package extendFunctionClass
|
|
|
|
<!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>class A<!> : Function1<Int, Int> {
|
|
|
|
}
|
|
|
|
class B : Function1<Int, Int> {
|
|
override fun invoke(p1 : Int) = p1
|
|
}
|