7ac599520e
Add ImportMemberIntention intention as a test. In this commit all failed test were disabled, necessary fixes will be added in the following commits
11 lines
201 B
Kotlin
Vendored
11 lines
201 B
Kotlin
Vendored
// IGNORE_FE10_BINDING_BY_FIR
|
|
fun test() {
|
|
class Test{
|
|
operator fun contains(fn: () -> Boolean) : Boolean = true
|
|
}
|
|
val test = Test()
|
|
test.c<caret>ontains {
|
|
true
|
|
}
|
|
}
|