cbc/test/block.cb

13 lines
138 B
Plaintext

import stdio;
int
main(int argc, char **argv)
{
int i = 1;
{
int i = 2;
printf("%d\n", i);
}
return 0;
}