Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
AnnotatedTryCatch.kt
blob: e98b5122708bc4cfee1ec6fb7a1d5f4b6256de93 [
file
]
annotation
class
My
fun foo
(
arg
:
Int
):
Int
{
try
{
return
1
/
(
arg
-
arg
)
}
catch
(
e
:
@My
Exception
)
{
return
-
1
}
}