brintos

brintos / llvm-project-archived public Read only

0
0
Text · 194 B · 5807536 Raw
7 lines · cpp
1// RUN: %clang_cc1 -frecovery-ast -verify %s2// RUN: %clang_cc1 -verify %s3 4struct alignas(invalid()) Foo {}; // expected-error {{use of undeclared identifier}}5 6constexpr int k = alignof(Foo);7