blob: b1cdc504e4935f375c157b671712ea389561baa9 [file] [log] [blame]
package noReflect
fun main() {
try {
String::class.annotations
} catch (e: KotlinReflectionNotSupportedError) {
println("KotlinReflectionNotSupportedError has been caught")
}
}