blob: 08ba9c3a0cd55636d6790aeeceeb5bc9bb6e562f [file] [log] [blame]
Anders Carlssond8fe2d52009-11-07 06:07:58 +00001// RUN: clang-cc -fsyntax-only -verify %s
2template <typename T>
3struct A {
4 char a __attribute__((aligned(16)));
5};
6int a[sizeof(A<int>) == 16 ? 1 : -1];
7