[FIR-TEST] Add new testdata generated after changes in previous commit
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
interface T {
|
||||
fun getX() = 1
|
||||
}
|
||||
|
||||
class C : T {
|
||||
val x = 1
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
interface T {
|
||||
fun getX() = 1
|
||||
}
|
||||
|
||||
interface C : T {
|
||||
val x: Int
|
||||
get() = 1
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
interface T {
|
||||
val x: Int
|
||||
get() = 1
|
||||
}
|
||||
|
||||
interface C : T {
|
||||
fun getX() = 1
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
interface T1 {
|
||||
fun getX() = 1
|
||||
}
|
||||
|
||||
interface T2 {
|
||||
val x: Int
|
||||
get() = 1
|
||||
}
|
||||
|
||||
class C : T1, T2 {
|
||||
}
|
||||
Reference in New Issue
Block a user