dc6be68a41
Fixed #KT-37273
8 lines
158 B
Kotlin
Vendored
8 lines
158 B
Kotlin
Vendored
// OUT_OF_CODE_BLOCK: FALSE
|
|
// TYPE: 1
|
|
// ERROR: Unresolved reference: i1
|
|
open class Base(init: () -> Unit)
|
|
|
|
class Some(i: Int) : Base({
|
|
val t = i<caret>
|
|
}) |