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