aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/cpp/macro-exp-tracking-4.c
blob: 401b846cc3ede1912a3c2c6b6bd90c02d1a5f690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
  { dg-options "-fshow-column -ftrack-macro-expansion=2" }
  { dg-do compile }
 */

#define SQUARE(A) A * A	 /* { dg-message "in definition of macro 'SQUARE'" } */

void
foo()
{
  SQUARE (1 << 0.1);  /* { dg-message "13:invalid operands to binary <<" } */
}