10 lines
114 B
Kotlin
Vendored
10 lines
114 B
Kotlin
Vendored
package foo
|
|
|
|
class A()
|
|
|
|
private val doInit = {
|
|
A()
|
|
}()
|
|
|
|
fun box(): String = if (doInit is A) "OK" else "fail"
|