mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
7 lines
158 B
C++
7 lines
158 B
C++
// 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];
|
|
|