view gcc/testsuite/g++.dg/warn/Wduplicated-cond1.C @ 158:494b0b89df80 default tip

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

// PR c++/94265
// { dg-do compile { target c++17 } }
// { dg-additional-options "-Wduplicated-cond" }

void
foo ()
{
  if (int a = 0; a)
  { }
  else if (a = 5; a) // { dg-message "previously used here" }
  { }
  else if (; a) // { dg-warning "duplicated .if. condition" }
  { }
  else if (int b = ++a; a)
  { }
}