10 lines
193 B
Kotlin
Vendored
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
|
|
}
|
|
|
|
} |