view gcc/testsuite/gcc.dg/pr68412-2.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* PR c/68412 */
/* { dg-do compile } */
/* { dg-options "-Wall -Wextra" } */

int
fn1 (int i)
{
  return ({ i; }) == ({ i; }); /* { dg-warning "self-comparison always evaluates to true" } */
}

int
fn2 (int i)
{
  return ({ i + 1; }) != ({ i + 1; }); /* { dg-warning "self-comparison always evaluates to false" } */
}