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

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

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