aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/short-enums.c
blob: 6605c4e8fc0774640e5d147fb6538018f1f92c74 (plain) (blame)
1
2
3
4
5
// 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];