blob: 4c23e21e74e2720b8213f2ddda0dc3edcabf86ca (
plain)
1
2
3
4
5
6
7
|
/* Test :: token not in C90. */
/* { dg-do preprocess } */
/* { dg-options "-std=c90 -pedantic-errors" } */
#define CONCAT(x, y) x ## y
CONCAT (:, :) /* { dg-error "does not give a valid preprocessing token" } */
|