update testdata for https://github.com/JetBrains/kotlin/pull/896/
This commit is contained in:
Vendored
+2
-2
@@ -3,12 +3,12 @@
|
||||
class FooIterator<T> {
|
||||
operator fun hasNext(): Boolean { return false }
|
||||
operator fun next(): Any {
|
||||
throw UnsupportedOperationException("not implemented")
|
||||
TODO("not implemented")
|
||||
}
|
||||
}
|
||||
class Foo<T> {
|
||||
operator fun iterator(): FooIterator<String> {
|
||||
throw UnsupportedOperationException("not implemented")
|
||||
TODO("not implemented")
|
||||
}
|
||||
}
|
||||
operator fun Any.component1(): Int {
|
||||
|
||||
Reference in New Issue
Block a user