brintos

brintos / llvm-project-archived public Read only

0
0
Text · 182 B · 42aa544 Raw
11 lines · c
1// RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s2 3#define R_PAREN ) 4 5#define FUNC(a) a 6 7static int glob = (1 + FUNC(1 R_PAREN ); 8 9// CHECK: static int glob = (1 + 1 );10 11