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