mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 20:16:06 +00:00
6 lines
159 B
C
6 lines
159 B
C
![]() |
// RUN: not %clang_cc1 -fsyntax-only %s -verify
|
||
|
// RUN: %clang_cc1 -fshort-enums -fsyntax-only %s -verify
|
||
|
|
||
|
enum x { A };
|
||
|
int t0[sizeof(enum x) == 1 ? 1 : -1];
|