Add super type in "Convert to anonymous object" test
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
// "Convert to anonymous object" "true"
|
// "Convert to anonymous object" "true"
|
||||||
interface I {
|
interface I0 {
|
||||||
|
fun x() {}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface I : I0() {
|
||||||
fun a()
|
fun a()
|
||||||
val b: Int
|
val b: Int
|
||||||
get() = 1
|
get() = 1
|
||||||
|
|||||||
+5
-1
@@ -1,5 +1,9 @@
|
|||||||
// "Convert to anonymous object" "true"
|
// "Convert to anonymous object" "true"
|
||||||
interface I {
|
interface I0 {
|
||||||
|
fun x() {}
|
||||||
|
}
|
||||||
|
|
||||||
|
interface I : I0() {
|
||||||
fun a()
|
fun a()
|
||||||
val b: Int
|
val b: Int
|
||||||
get() = 1
|
get() = 1
|
||||||
|
|||||||
Reference in New Issue
Block a user