236dfe60f1
#KT-40409 Fixed
12 lines
283 B
Kotlin
Vendored
12 lines
283 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun A.foobar() = 3
|
|
|
|
class A {
|
|
fun foo() = 1
|
|
constructor( x: Any = object {
|
|
fun bar() = <!UNRESOLVED_REFERENCE!>foo<!>() + this@A.<!UNRESOLVED_REFERENCE!>foo<!>() +
|
|
<!INAPPLICABLE_CANDIDATE!>foobar<!>()
|
|
})
|
|
}
|