[FIR-TEST] Move analysis tests to separate module
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
// FILE: A.java
|
||||
|
||||
class A {
|
||||
public static final A VALUE = new A();
|
||||
}
|
||||
|
||||
// FILE: B.java
|
||||
|
||||
class B extends A {
|
||||
public static final B VALUE = new B();
|
||||
}
|
||||
|
||||
// FILE: main.kt
|
||||
|
||||
fun main() {
|
||||
val b = B.VALUE // <- should be B
|
||||
}
|
||||
Reference in New Issue
Block a user