2fcd296db8
#KT-58757 Fixed #KT-58840 Fixed
12 lines
250 B
Kotlin
Vendored
12 lines
250 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// ISSUE: KT-58757
|
|
|
|
internal abstract class Foo {
|
|
abstract val context: CharSequence
|
|
}
|
|
|
|
internal abstract class Bar(protected val foo: Foo) {
|
|
protected inline val inlineContext: String
|
|
get() = foo.context as String
|
|
}
|