Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
f94e215e4a67e5439d56a67bbe470c7860d4b9a6
/
.
/
test
/
SemaCXX
/
qualified-names-print.cpp
blob: 902655238baf2c9fecfd501e74a2f17730d1898e [
file
] [
log
] [
blame
]
// RUN: clang -ast-print %s 2>&1 | grep "N::M::X<INT>::value"
namespace
N
{
namespace
M
{
template
<
typename
T
>
struct
X
{
enum
{
value
};
};
}
}
typedef
int
INT
;
int
test
()
{
return
N
::
M
::
X
<
INT
>::
value
;
}