Home | History | Annotate | Download | only in Sema
      1 // RUN: not %clang_cc1 -fsyntax-only %s -verify
      2 // RUN: %clang_cc1 -fshort-enums -fsyntax-only %s -verify
      3 
      4 enum x { A };
      5 int t0[sizeof(enum x) == 1 ? 1 : -1];
      6