3d8d92c7d3
- test data files renamed from *.jet to *.kt
10 lines
180 B
Kotlin
10 lines
180 B
Kotlin
package extendFunctionClass
|
|
|
|
class <!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>A<!> : Function1<Int, Int>() {
|
|
|
|
}
|
|
|
|
class B : Function1<Int, Int>() {
|
|
override fun invoke(p1 : Int) = p1
|
|
}
|