view gcc/testsuite/gcc.dg/c99-const-expr-15.c @ 157:dafe684d005c

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:08:54 +0900
parents 1830386684a0
children
line wrap: on
line source

/* Test for constant expressions: casts with integer overflow.  PR
   c/93241.  */
/* { dg-do compile } */
/* { dg-options "-std=c99 -pedantic-errors" } */

#include <limits.h>

struct s { int a : (0 ? (_Bool) (INT_MAX + 1) : 1); };
struct t { int a : (0 ? (short) ((INT_MAX + 1) != 0) : 1); };