Fix old testdata: add missing operator modifier
This testdata was written when there was no "operator" modifier.
After a83225218f rules for operators become stricter and now functions without operators are not considered as such
This commit is contained in:
+2
-2
@@ -3,5 +3,5 @@ package test1
|
||||
public class MyClass {
|
||||
}
|
||||
|
||||
public fun MyClass.component1() = 1
|
||||
public fun MyClass.component2() = 2
|
||||
public operator fun MyClass.component1() = 1
|
||||
public operator fun MyClass.component2() = 2
|
||||
Reference in New Issue
Block a user