f38c0cf348
Similarly to FIR diagnostic tests. This commit enable all available test data and check the reported error messages by FIR. This helps identify some issues in formatting of FIR diagnostics. The changes on the test file are mechanically generated. Failed tests are disabled with `// IGNORE_FIR` and are re-enabled in the second commit.
16 lines
153 B
Kotlin
Vendored
16 lines
153 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
class X {
|
|
<error>val x : Int</error>
|
|
}
|
|
|
|
open class Y() {
|
|
val x : Int = 2
|
|
}
|
|
|
|
class Y1 {
|
|
val x : Int get() = 1
|
|
}
|
|
|
|
class Z : Y() {
|
|
}
|