ae3497c6ce
#KT-18985 Fixed
9 lines
183 B
Kotlin
Vendored
9 lines
183 B
Kotlin
Vendored
// Works already in M11
|
|
|
|
fun test(c : Class<*>) {
|
|
val sc = c <!UNCHECKED_CAST!>as Class<String><!>
|
|
// No ambiguous overload
|
|
c.getAnnotations();
|
|
sc.getAnnotations();
|
|
}
|