Sign in
android
/
toolchain
/
gcc
/
donut
/
.
/
gcc-4.2.1
/
libjava
/
testsuite
/
libjava.compile
/
PR21045.java
blob: 3d34ee1f304a039ea2f7170ea215823c835868ba [
file
]
public
class
PR21045
{
class
InnerBase
{
InnerBase
()
throws
Exception
,
NullPointerException
{}
}
void
method
()
{
try
{
InnerBase
obj
=
new
InnerBase
()
{};
}
catch
(
Exception
e
)
{}
}
}