blob: 42aa5445e90510f3f449b074df60e54d87caf78e [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %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