blob: 1cb19f0312e4be1e72e1e4a383f86fa3d38417a5 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -ast-print %s 2>&1 | grep "N::M::X<INT>::value"
Douglas Gregorbad35182009-03-19 03:51:16 +00002namespace N {
3 namespace M {
4 template<typename T>
5 struct X {
6 enum { value };
7 };
8 }
9}
10
11typedef int INT;
12
13int test() {
14 return N::M::X<INT>::value;
15}