Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceCallWithUnaryOperator/notSanityTest.kt.after
T
2015-12-17 11:11:27 +03:00

9 lines
157 B
Plaintext
Vendored

// INTENTION_TEXT: Replace with '!' operator
fun test() {
class Test {
operator fun not(): Test = Test()
}
val test = Test()
!test
}