Big change in quickfix tests: no stupid test data format with "before" and "after" file prefixes
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
// "Create function 'next'" "true"
|
||||
class FooIterator<T> {
|
||||
fun hasNext(): Boolean { return false }
|
||||
}
|
||||
class Foo<T> {
|
||||
fun iterator(): FooIterator<T> {
|
||||
throw Exception("not implemented")
|
||||
}
|
||||
}
|
||||
fun foo() {
|
||||
for (i: Int in Foo<caret><Int>()) { }
|
||||
}
|
||||
Reference in New Issue
Block a user