Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e5523c196e17d8fdbb5635aa785d6c182ed3f821
/
.
/
compiler
/
testData
/
integration
/
smoke
/
noReflect
/
noReflect.kt
blob: b1cdc504e4935f375c157b671712ea389561baa9 [
file
] [
log
] [
blame
]
package
noReflect
fun main
()
{
try
{
String
::
class
.
annotations
}
catch
(
e
:
KotlinReflectionNotSupportedError
)
{
println
(
"KotlinReflectionNotSupportedError has been caught"
)
}
}