int main(int argc, char argv) { int c = 1; return 0; } int add(int a, int b) { /* int d = c; // should fail */ return a + b; }