comparison gcc/testsuite/gcc.dg/pr15236.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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;