blob: a0ab1ef1fee286579e4df3d63dac3e2388131005 [file] [log] [blame]
// "Bring 'int j' into Scope" "true"
class a {
void foo() {
int j;
{
int i;
j = 10;
}
System.out.println(<caret>j); // invoke "bring 'int j' into scope" quickfix here
}
}