Files
kotlin-fork/idea/testData/intentions/removeUnnecessaryParentheses/unnecessaryParentheses4.kt.after
T

7 lines
108 B
Plaintext
Vendored

interface Foo {
operator fun inc() : Foo
operator fun not() : Foo
}
fun foo(x: Foo) {
!x.inc()
}