blob: 2adaa345645733da3dcd6be292385c8c66be53d2 [file] [log] [blame]
// "Bring 'int i' into Scope" "true"
class a {
void foo () {
int i = 0;
try {
i = 0;
} catch (Exception e) {
int j = i;
}
}
}