blob: 89b03a608ce89f51612eda509f0fa95e7039727e [file] [log] [blame]
// XFAIL: cygwin,mingw
// RUN: %clang -g -S %s -o - | FileCheck %s
// CHECK: TAG_namespace
namespace A {
enum numbers {
ZERO,
ONE
};
}
using namespace A;
numbers n;