blob: 0f4f596361aa11f3a86c9e0a39c6c6dcb9e3b47c (
plain)
1
2
3
4
5
6
7
|
// RUN: %clang_cc1 -fsyntax-only %s -ast-dump | FileCheck %s
struct B { _Alignas(64) struct { int b; }; };
// CHECK: AlignedAttr {{.*}} _Alignas
// CHECK: ConstantExpr {{.*}} 64
// CHECK: IntegerLiteral {{.*}} 64
|