c89d1af9fa
Place generated property next to other properties #KT-14886 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
|
|
|
|
val foo: ReadOnlyProperty<Nothing?, Int>
|
|
|
|
fun test() {
|
|
val x: Int by foo
|
|
}
|