mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
15 lines
298 B
Kotlin
Vendored
15 lines
298 B
Kotlin
Vendored
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\$test_module\(\)Ljava/lang/String;
|
|
// 1 public final static f\$test_module\(\)Ljava/lang/String;
|