7 lines
117 B
Kotlin
Vendored
7 lines
117 B
Kotlin
Vendored
interface Foo {
|
|
operator fun inc() : Foo
|
|
operator fun not() : Foo
|
|
}
|
|
fun foo(x: Foo) {
|
|
!(<caret>x.inc())
|
|
} |