Files
kotlin-fork/js/js.translator/testData/box/expression/function/callFunInInit.kt
T
2016-09-29 12:00:40 +03:00

10 lines
114 B
Kotlin
Vendored

package foo
class A()
private val doInit = {
A()
}()
fun box(): String = if (doInit is A) "OK" else "fail"