Analysis API: fix some compilation errors in reference resolve testdata
This commit is contained in:
+4
-3
@@ -3,9 +3,10 @@ fun test(f: Foo) {
|
||||
}
|
||||
|
||||
interface Foo
|
||||
fun Foo.iterator(): Iterator
|
||||
fun Foo.iterator(): Iterator = TODO()
|
||||
|
||||
interface Iterator
|
||||
|
||||
fun Iterator.next(): Any
|
||||
fun Iterator.hasNext(): Boolean
|
||||
fun Iterator.next(): Any= TODO()
|
||||
fun Iterator.hasNext(): Boolean = TODO()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user