0a002bcc53
Adapted from https://github.com/develar/kotlin/commit/a9e0a42fb1347fa8e21c86b5a073ef8a7c873da0.
10 lines
93 B
Kotlin
10 lines
93 B
Kotlin
package foo
|
|
|
|
class A()
|
|
|
|
private val doInit = {
|
|
A()
|
|
}()
|
|
|
|
fun box(): Boolean = doInit is A
|