Files
kotlin-fork/compiler/testData/diagnostics/tests/thisAndSuper/ambigousLabelOnThis.kt
T

5 lines
73 B
Kotlin

class Dup {
fun Dup() : Unit {
this<!AMBIGUOUS_LABEL!>@Dup<!>
}
}