c2b38cfa41
#KT-11795 Fixed
11 lines
196 B
Plaintext
Vendored
11 lines
196 B
Plaintext
Vendored
import kotlin.properties.ReadOnlyProperty
|
|
|
|
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized
|
|
|
|
fun test() {
|
|
val x: Int by foo
|
|
}
|
|
|
|
val foo: ReadOnlyProperty<Nothing?, Int>
|