Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/specialNames/delegationBy.kt
T

5 lines
118 B
Kotlin

trait Foo
class Bar(f: Foo) : Foo by f {
<!CONFLICTING_PLATFORM_DECLARATIONS!>val `$delegate_0`: Foo?<!> = null
}