blob: af6020e0aeae68fc7e84ced8c958105b27553bd9 [file] [log] [blame]
Stuart Hastings76be2a22010-10-28 00:47:58 +00001// XFAIL: freebsd, linux
Devang Patel4bc48872010-10-27 23:23:58 +00002// RUN: %clang -g -S %s -o - | FileCheck %s
3
4// CHECK: TAG_namespace
5namespace A {
6 enum numbers {
7 ZERO,
8 ONE
9 };
10}
11
12using namespace A;
13numbers n;