Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
test
/
SemaTemplate
/
instantiate-attr.cpp
blob: 08ba9c3a0cd55636d6790aeeceeb5bc9bb6e562f [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only -verify %s
template
<
typename
T
>
struct
A
{
char
a __attribute__
((
aligned
(
16
)));
};
int
a
[
sizeof
(
A
<int>
)
==
16
?
1
:
-
1
];