39ac205b55
KT-10 Don't allow to use properties in supertype initializers KT-617 Prohibit dollars in call to superclass constructors
9 lines
211 B
Plaintext
9 lines
211 B
Plaintext
// 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
|
|
}
|