Files
kotlin-fork/compiler/testData/diagnostics/tests/DelegationToJavaIface.kt
T
Kirill Berezin b84f068c33 kt-1760 delegation to java iface:
- removed codegen's unnecessary lookup for a declaration
- skipped class' only supertype (if any) methods when delegating
2012-08-30 14:03:43 +04:00

3 lines
125 B
Kotlin

class TestIface(r : Runnable) : Runnable by r {}
class TestObject(o : Object) : <!DELEGATION_NOT_TO_TRAIT!>Object<!> by o {}