FIR IDE: fix typo in test directory (overridden)

This commit is contained in:
Jinseong Jeon
2021-10-23 23:22:31 -07:00
committed by Ilya Kirillov
parent 907d2e9ed4
commit 4266ffa274
23 changed files with 28 additions and 28 deletions
@@ -0,0 +1,26 @@
// FILE: main.kt
class A : B() {
override val x<caret>: Int get() = super.x
}
// FILE: B.java
public class B extends C {
@Override
public int getX() {
return 0;
}
}
// FILE: C.kt
abstract class C {
abstract val x: Int
}
// RESULT
// ALL:
// /B.x: Int
// C.x: Int
// DIRECT:
// /B.x: Int