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

12 lines
183 B
Plaintext

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