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