Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
eca5749185e4cfa2ab6f37a96ec03ac753b467b8
/
.
/
test
/
SemaTemplate
/
instantiate-anonymous-union.cpp
blob: 4eb5b0c24cb0e3ac19bb116b51e662c39f106e12 [
file
] [
log
] [
blame
]
Douglas Gregor
d9949ab
2009-08-28 22:03:51 +0000
[
diff
] [
blame
]
1
// RUN: clang-cc -fsyntax-only %s
2
3
// FIXME: We need to test anonymous structs/unions in templates for real.
4
5
template
<
typename
T
>
class
A
{
struct
{
};
};
6
7
A
<int>
a0
;
8