c89d1af9fa
Place generated property next to other properties #KT-14886 Fixed
15 lines
208 B
Kotlin
Vendored
15 lines
208 B
Kotlin
Vendored
// "Create property 'foo'" "true"
|
|
// ERROR: Property must be initialized or be abstract
|
|
|
|
class Test {
|
|
val foo1 = 1
|
|
|
|
fun test(): Int {
|
|
return <caret>foo
|
|
}
|
|
|
|
val foo2 = 42
|
|
}
|
|
|
|
val bar = 1
|