Files
kotlin-fork/backend.native/tests/external/codegen/blackbox/objects/kt2675.kt
T
Ilya Matveev 1b553ebfaf backend/tests: Add blackbox tests from Kotlin JVM
Added tests from testData/codegen/box directory. There are blackbox tests
in other directories and they are to be added.
2017-01-20 14:04:04 +03:00

17 lines
257 B
Kotlin

class A() {
fun ok() = Foo.Bar.bar() + Foo.Bar.barv
private object Foo {
fun foo() = "O"
val foov = "K"
public object Bar {
fun bar() = foo()
val barv = foov
}
}
}
fun box() = A().ok()