view gcc/testsuite/c-c++-common/Wswitch-outside-range-4.c @ 158:494b0b89df80 default tip

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

// PR c++/90875
// { dg-options "-Wno-pedantic -Wno-switch-outside-range" }

void f(char c)
{
  switch (c)
  
    case -300 ... 300:; // { dg-bogus "lower value in case label range less than minimum value for type|upper value in case label range exceeds maximum value for type" }
}