Files
kotlin-fork/js/js.translator/testData/box/simple/propertyAccess.kt
T
2018-09-12 09:49:25 +03:00

10 lines
123 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1282
package foo
class Test() {
val p = "OK"
}
fun box(): String {
return Test().p
}