d48851ba63
#EA-69707 Fixed
12 lines
256 B
Plaintext
Vendored
12 lines
256 B
Plaintext
Vendored
import kotlin.properties.ReadOnlyProperty
|
|
|
|
// "Create property 'foo'" "true"
|
|
// ERROR: Local variables are not allowed to have delegates
|
|
// ERROR: Property must be initialized
|
|
|
|
val foo: ReadOnlyProperty<Nothing?, Int>
|
|
|
|
fun test() {
|
|
val x: Int by foo
|
|
}
|