blob: 906b97b8f061fa36c4d2665cbd116a4e82b13bc6 [file] [log] [blame]
// Build don't run:
// Based on a testcase by eyal.ben-david@aks.com
// An extern declaration of an undeclared object within a function
// introduces the object into the enclosing namespace [basic.link]/7
namespace {
void foo() {
extern int xx;
xx = 0;
}
int xx = 1;
}
int main() {
xx = 2;
}