blob: 43bd30d9e7efde3b0b9bc01eb6f905d1341b2fd5 [file] [log] [blame]
class A {
companion object {
@JvmStatic
internal fun f(): String = "OK"
}
}
fun box(): String {
return A.f()
}
// Check the names of mangled functions
// 1 public final f\$main\(\)Ljava/lang/String;
// 1 public final static f\$main\(\)Ljava/lang/String;