Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceCallWithUnaryOperator/notSanityTest.kt
T
2015-05-14 01:10:05 +03:00

9 lines
160 B
Kotlin
Vendored

// INTENTION_TEXT: Replace with '!' operator
fun test() {
class Test {
fun not(): Test = Test()
}
val test = Test()
test.n<caret>ot()
}