Files
kotlin-fork/idea/testData/copyPaste/imports/ExtensionAsInfixOrOperator.expected.kt
T
2015-02-19 11:07:02 +03:00

10 lines
92 B
Kotlin
Vendored

package to
import a.A
import a.infix
import a.plus
fun f(a: A) {
a + a
a infix 1
}