Fix tests: "infix modifier required" and "operator modifier required" errors
This commit is contained in:
Vendored
+2
-2
@@ -1,7 +1,7 @@
|
||||
// "Create member function 'component3'" "true"
|
||||
class Foo<T> {
|
||||
fun component1(): Int { return 0 }
|
||||
fun component2(): Int { return 0 }
|
||||
operator fun component1(): Int { return 0 }
|
||||
operator fun component2(): Int { return 0 }
|
||||
}
|
||||
fun foo() {
|
||||
val (a, b, c: String) = Foo<caret><Int>()
|
||||
|
||||
Reference in New Issue
Block a user