Files
kotlin/compiler/testData/loadJava/javaAgainstKotlin/samAdapters/OverrideSamAdapterInKotlin/Sub.kt
2013-06-25 20:17:45 +04:00

6 lines
90 B
Kotlin
Vendored

package test
public class Sub: Super() {
override fun foo(r: (() -> Unit)?) {
}
}