3d8d92c7d3
- test data files renamed from *.jet to *.kt
9 lines
211 B
Kotlin
Vendored
9 lines
211 B
Kotlin
Vendored
// http://youtrack.jetbrains.net/issue/KT-421
|
|
// KT-421 Strange 'unresolved' bug with backing fields
|
|
|
|
class A() {
|
|
val c = 1
|
|
val a = <!UNINITIALIZED_VARIABLE!>b<!>
|
|
val b = $c // '$c' is unresolved
|
|
}
|