rt_gccstream/gcc/testsuite/gcc.dg/pr22311-1.c

7 lines
195 B
C

/* Bug 22311: ICE with -fshort-enums on shortened operations. */
/* { dg-do compile } */
/* { dg-options "-fshort-enums" } */
typedef enum { A = 1 } E;
void f(E e, unsigned char c) { c |= e; }