6f6cb03549
FunctionN and ExtensionFunctionN are now interfaces, with the corresponding implementations in FunctionImplN and ExtensionFunctionImplN Update test data
10 lines
176 B
Kotlin
10 lines
176 B
Kotlin
package extendFunctionClass
|
|
|
|
class <!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>A<!> : Function1<Int, Int> {
|
|
|
|
}
|
|
|
|
class B : Function1<Int, Int> {
|
|
override fun invoke(p1 : Int) = p1
|
|
}
|