Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
UsedInCatch.groovy
blob: ca2688e840e61a67fcbeb6396a457d39ebf35869 [
file
] [
log
] [
blame
]
String
s
=
''
;
try
{
print
2
}
catch
(
UnsupportedOperationException
ignored
)
{
<
warning descr
=
"Assignment is not used"
>
s
</
warning
>=
''
s
=
''
}
catch
(
RuntimeException
ignored
)
{
s
=
''
}
catch
(
Exception
ignored
)
{
s
=
''
}
print
s