1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
8 lines
215 B
C
8 lines
215 B
C
// RUN: %clang_cc1 -std=c1x -fsyntax-only -verify %s
|
|
|
|
_Alignas(4) char c1;
|
|
unsigned _Alignas(long) char c2;
|
|
char _Alignas(16) c3;
|
|
|
|
char c4 _Alignas(32); // expected-error {{expected ';' after top level declarator}}
|