Files
2020-04-21 09:48:03 +03:00

8 lines
138 B
Kotlin
Vendored

interface IFoo {
fun foo(i: Int): Int
infix fun bar(i: Int): Int
}
infix fun IFoo.foo(i: Int) = i
infix fun IFoo.bar(i: Int) = i