Files
kotlin-fork/idea/testData/intentions/removeUnnecessaryParentheses/unnecessaryParentheses4.kt
T
2015-05-13 16:13:13 +02:00

7 lines
99 B
Kotlin

interface Foo {
fun inc() : Foo
fun not() : Foo
}
fun foo(x: Foo) {
!(<caret>x.inc())
}