mirror of
https://github.com/intel/llvm.git
synced 2026-01-27 06:06:34 +08:00
14 lines
180 B
C++
14 lines
180 B
C++
// 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;
|