Files
kotlin-fork/compiler/testData/diagnostics/tests/override/ExtendFunctionClass.kt
T

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
}