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
147 B
Plaintext
Vendored
11 lines
147 B
Plaintext
Vendored
// IGNORE_FE10_BINDING_BY_FIR
|
|
class C {
|
|
companion object {
|
|
operator fun contains(s: String) = true
|
|
}
|
|
}
|
|
|
|
fun foo() {
|
|
"x" in C
|
|
}
|