#include <iostream>
int x = 12;
void f(bool y)
{
if (y) {
int x = 13;
std::cout << x; // which x?
}
int main()
f(true);
g++
1312