7ac599520e
Add ImportMemberIntention intention as a test. In this commit all failed test were disabled, necessary fixes will be added in the following commits
12 lines
346 B
Kotlin
Vendored
12 lines
346 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// ERROR: No value passed for parameter 'b'
|
|
// ERROR: 'operator' modifier is inapplicable on this function: must have a single value parameter
|
|
// IGNORE_FE10_BINDING_BY_FIR
|
|
fun test() {
|
|
class Test{
|
|
operator fun contains(a: Int, b: Int): Boolean = true
|
|
}
|
|
val test = Test()
|
|
test.cont<caret>ains(0)
|
|
}
|