mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
14 lines
197 B
Kotlin
Vendored
14 lines
197 B
Kotlin
Vendored
class Foo {
|
|
|
|
init {Foo.test()}
|
|
|
|
companion object {
|
|
private fun test() {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
// TESTED_OBJECT_KIND: function
|
|
// TESTED_OBJECTS: Foo$Companion, test
|
|
// FLAGS: ACC_PRIVATE, ACC_FINAL |