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