Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
extractMethod
/
IDEADEV33368.java
blob: bd8bfa8c5cbc17151a7a1e66434a8305c6c2436d [
file
]
class
Test
{
void
m
(
boolean
b
)
{
int
x
=
42
;
try
{
<
selection
>
if
(
b
)
{
x
=
23
;
throw
new
Exception
();
}
</
selection
>
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
x
);
}
}
}