blob: 30597a00973f4aebf796c71e920ae3a339d30507 [file] [log] [blame]
Edward O'Callaghan0e2f7932009-10-26 22:51:02 +00001// RUN: clang-cc -E %s | FileCheck %s
Chris Lattnerb10969b2006-07-30 07:33:49 +00002
3#define R_PAREN )
4
5#define FUNC(a) a
6
7static int glob = (1 + FUNC(1 R_PAREN );
8
Edward O'Callaghan0e2f7932009-10-26 22:51:02 +00009// CHECK: static int glob = (1 + 1 );
10