mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-13 08:00:22 -04:00
7 lines
186 B
C
7 lines
186 B
C
// RUN: not %clang_cc1 -fsyntax-only %s -verify
|
|
// RUN: %clang_cc1 -fshort-enums -fsyntax-only %s -verify
|
|
// expected-no-diagnostics
|
|
|
|
enum x { A };
|
|
int t0[sizeof(enum x) == 1 ? 1 : -1];
|