unplugged-system/external/antlr/runtime/ObjC/Framework/examples/scopes/input

13 lines
97 B
Plaintext
Raw Normal View History

int i;
int j;
method foo() {
int i;
int k;
i=3;
{
int j;
int k;
k = 4;
}
}