f71a56e742
Mostly, the semantics for statics/companions has been changed there Fixed test data now is much closer to semantics of old FE
23 lines
515 B
Kotlin
Vendored
23 lines
515 B
Kotlin
Vendored
// NI_EXPECTED_FILE
|
|
|
|
interface Trait {
|
|
fun bar() = 42
|
|
}
|
|
|
|
class Outer : Trait {
|
|
class Nested {
|
|
val t = this@Outer.<!UNRESOLVED_REFERENCE!>bar<!>()
|
|
val s = super@Outer.<!UNRESOLVED_REFERENCE!>bar<!>()
|
|
|
|
inner class NestedInner {
|
|
val t = this@Outer.<!UNRESOLVED_REFERENCE!>bar<!>()
|
|
val s = super@Outer.<!UNRESOLVED_REFERENCE!>bar<!>()
|
|
}
|
|
}
|
|
|
|
inner class Inner {
|
|
val t = this@Outer.bar()
|
|
val s = super@Outer.bar()
|
|
}
|
|
}
|