view gcc/testsuite/gcc.dg/cpp/20000209-1.c @ 111:04ced10e8804

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

/* { dg-do preprocess } */

/* Tests for line numbering around function-like macro calls.
   Bug found by Mark Mitchell.  */

#define f(x) x
#define g f

f (3);
#error here	/* { dg-error "here" "case 0" } */

f
  (3);
#error here	/* { dg-error "here" "case 1" } */

(f
  )(3);
#error here	/* { dg-error "here" "case 2" } */

g
  (3);
#error here	/* { dg-error "here" "case 3" } */

(g
  )(3);
#error here	/* { dg-error "here" "case 4" } */

f /* some
     text */  (3);
#error here	/* { dg-error "here" "case 5" } */

(g /* some
      text */ )(3);
#error here	/* { dg-error "here" "case 6" } */