mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
10 lines
224 B
Kotlin
Vendored
10 lines
224 B
Kotlin
Vendored
class MyClass() {
|
|
companion object {
|
|
fun test(s: String, x:Int = 10) {}
|
|
}
|
|
}
|
|
|
|
// TESTED_OBJECT_KIND: function
|
|
// TESTED_OBJECTS: MyClass$Companion, test$default
|
|
// FLAGS: ACC_PUBLIC, ACC_STATIC, ACC_SYNTHETIC
|