2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -ast-print %s 2>&1 | grep "N::M::X<INT>::value"
|
2009-03-19 11:51:16 +08:00
|
|
|
namespace N {
|
|
|
|
namespace M {
|
|
|
|
template<typename T>
|
|
|
|
struct X {
|
|
|
|
enum { value };
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef int INT;
|
|
|
|
|
|
|
|
int test() {
|
|
|
|
return N::M::X<INT>::value;
|
|
|
|
}
|