Files
kotlin-fork/compiler/testData/codegen/box/safeCall/kt232.kt
T
2016-11-09 21:41:12 +03:00

14 lines
223 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
class A() {
fun foo() {
System.out?.println(1)
}
}
fun box() : String {
val a : A = A()
return "OK"
}