Files
kotlin-fork/compiler/testData/compileKotlinAgainstCustomBinaries/classfileWithoutConstructors/shouldNotCompile.kt
T

10 lines
193 B
Kotlin
Vendored

package test
public class B {
public fun test(): String {
TopLevelKt() // error here
return TopLevelKt.foo("OK") // no error here: can still call static functions
}
}