mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
13 lines
143 B
Plaintext
Vendored
13 lines
143 B
Plaintext
Vendored
package p
|
|
|
|
// SIBLING:
|
|
object O {
|
|
val a = 1
|
|
fun test() {
|
|
__dummyTestFun__()
|
|
}
|
|
}
|
|
|
|
private fun __dummyTestFun__() {
|
|
O.a
|
|
} |