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

10 lines
138 B
Kotlin
Vendored

package extendFunctionClass
class A : Function1<Int, Int> {
}
class B : Function1<Int, Int> {
override fun invoke(p1 : Int) = p1
}