summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr68412-2.c
blob: be1dcfa5e26e49306853c4b4735c16ccb8f92d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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" } */
}