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

12 lines
192 B
Plaintext
Vendored

fun test() {
class Test{
operator fun contains(fn: () -> Boolean) : Boolean = true
}
val test = Test()
if (true) {
{
true
} in test
}
}