Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceContains/functionLiteralArgumentAfterSemicolon.kt.after
T
Stanislav Erokhin 7ac599520e Add first prototype of BindingContext implementation by FIR
Add ImportMemberIntention intention as a test.
In this commit all failed test were disabled, necessary fixes will be
added in the following commits
2021-05-10 14:04:03 +03:00

11 lines
189 B
Plaintext
Vendored

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