Add super type in "Convert to anonymous object" test

This commit is contained in:
Yan Zhulanow
2020-05-29 19:04:11 +09:00
parent 111b2945e1
commit 8e8171547b
2 changed files with 10 additions and 2 deletions
@@ -1,5 +1,9 @@
// "Convert to anonymous object" "true"
interface I {
interface I0 {
fun x() {}
}
interface I : I0() {
fun a()
val b: Int
get() = 1