Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/specialNames/delegationBy.kt
T
2014-06-19 22:10:57 +04:00

5 lines
148 B
Kotlin

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