1 // XFAIL: cygwin,mingw 2 // RUN: %clang -g -S %s -o - | FileCheck %s 3 4 // CHECK: TAG_namespace 5 namespace A { 6 enum numbers { 7 ZERO, 8 ONE 9 }; 10 } 11 12 using namespace A; 13 numbers n; 14