Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
d6139895f43d161a972d134ffda4229d2f548eb6
/
.
/
test
/
SemaTemplate
/
instantiate-anonymous-union.cpp
blob: 4eb5b0c24cb0e3ac19bb116b51e662c39f106e12 [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only %s
// FIXME: We need to test anonymous structs/unions in templates for real.
template
<
typename
T
>
class
A
{
struct
{
};
};
A
<int>
a0
;