[FIR-TEST] Add new testdata generated after changes in previous commit
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
// FILE: Test.java
|
||||
public interface Test {
|
||||
default String test() {
|
||||
return "123";
|
||||
}
|
||||
}
|
||||
|
||||
// FILE: test.kt
|
||||
interface KTrait : Test {
|
||||
fun ktest() {
|
||||
super.test()
|
||||
|
||||
test()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
interface KTrait2 : KTrait {
|
||||
fun ktest2() {
|
||||
super.test()
|
||||
|
||||
test()
|
||||
}
|
||||
}
|
||||
|
||||
class A : KTrait {
|
||||
fun a() {
|
||||
super.test()
|
||||
|
||||
test()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class A2 : KTrait2 {
|
||||
fun a() {
|
||||
super.test()
|
||||
|
||||
test()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user