PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / pr15236.c
blobb01a4e8587328fddd9f0f162f7c0446a97f9c499
1 /* PR 15236: pedantic switch modifies treatment of non-ISO compliant
2 enumerations. */
3 /* { dg-do compile } */
4 /* { dg-options "-Wall -Wextra -pedantic-errors -Wconversion" } */
5 typedef enum OMX_ERRORTYPE
7 OMX_ErrorNone = 0,
8 OMX_ErrorInsufficientResources = 0x80001000 /* { dg-error "ISO C restricts enumerator values to range of .int." } */
9 } OMX_ERRORTYPE;