Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/problems/immutableName.fir.txt
T
2022-01-31 21:59:15 +03:00

29 lines
745 B
Plaintext
Vendored

FILE: Impl.kt
public abstract class Impl : R|Base| {
public constructor(): R|Impl| {
super<R|kotlin/Any|>()
}
public open override fun foo(name: R|kotlin/String|): R|Base| {
^foo this@R|/Impl|
}
}
FILE: test.kt
public abstract class ImplDerived : R|Impl|, R|Derived| {
public constructor(): R|ImplDerived| {
super<R|Impl|>()
}
public abstract override fun foo(name: R|kotlin/String?|): R|Derived|
}
public abstract class DerivedImpl : R|Derived|, R|Impl| {
public constructor(): R|DerivedImpl| {
super<R|Impl|>()
}
public abstract override fun foo(name: R|kotlin/String?|): R|Derived|
}