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