Files
kotlin-fork/idea/testData/editor/optimizeImports/common/ComponentFunction.dependency.kt
T
Mikhail Zarechenskiy 78affdd2b4 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
2019-09-25 01:52:55 +03:00

7 lines
130 B
Kotlin
Vendored

package test1
public class MyClass {
}
public operator fun MyClass.component1() = 1
public operator fun MyClass.component2() = 2