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