[FIR-TEST] Add new testdata generated after changes in previous commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// !CHECK_TYPE
|
||||
// FILE: A.java
|
||||
public enum A {
|
||||
|
||||
ENTRY {
|
||||
public String s() {
|
||||
return "s";
|
||||
}
|
||||
};
|
||||
public abstract String s();
|
||||
}
|
||||
|
||||
// FILE: test.kt
|
||||
fun main() {
|
||||
checkSubtype<String?>(A.ENTRY.s())
|
||||
}
|
||||
Reference in New Issue
Block a user