Files
kotlin-fork/compiler/testData/diagnostics/tests/delegatedProperty/inference/labeledDelegatedExpression.kt
T
2014-07-08 14:57:40 +04:00

9 lines
200 B
Kotlin

class A3 {
val a: String by @l MyProperty()
class MyProperty<T> {}
fun <T> MyProperty<T>.get(thisRef: Any?, desc: PropertyMetadata): T {
throw Exception("$thisRef $desc")
}
}