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 6 { 7 OMX_ErrorNone = 0, 8 OMX_ErrorInsufficientResources = 0x80001000 /* { dg-error "ISO C restricts enumerator values to range of .int." } */ 9 } OMX_ERRORTYPE; 10