Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/kt3224.fir.kt
T

9 lines
162 B
Kotlin
Vendored

// Works already in M11
fun test(c : Class<*>) {
val sc = c as Class<String>
// No ambiguous overload
c.getAnnotations();
sc.getAnnotations();
}