Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Anders Carlsson | d8fe2d5 | 2009-11-07 06:07:58 +0000 | [diff] [blame] | 2 | template <typename T> |
3 | struct A { | ||||
4 | char a __attribute__((aligned(16))); | ||||
5 | }; | ||||
6 | int a[sizeof(A<int>) == 16 ? 1 : -1]; | ||||
7 |