blob: b6d6c86aebe97ce190bfbfb88dd0cd2410aa896c [file] [log] [blame]
//method
void foo() {
{
int a = 1;
bar(a);
}
{
int a = 2;
bar(a);
}
{
bar(3);
}
}