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