7ac599520e
Add ImportMemberIntention intention as a test. In this commit all failed test were disabled, necessary fixes will be added in the following commits
8 lines
235 B
Plaintext
Vendored
8 lines
235 B
Plaintext
Vendored
// IGNORE_FE10_BINDING_BY_FIR
|
|
@Suppress("INAPPLICABLE_OPERATOR_MODIFIER")
|
|
public operator fun CharSequence.contains(other: CharSequence, ignoreCase: Boolean = false): Boolean = false
|
|
fun test() {
|
|
val foo = "foo"
|
|
"bar" in foo
|
|
}
|