Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/kt3224.kt
T
Mikhail Glukhikh 1544755838 Test refactoring
2015-04-14 19:11:26 +03:00

8 lines
186 B
Kotlin
Vendored

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