freebsd-dev/test/Preprocessor/macro_rparen_scan2.c

11 lines
182 B
C
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
2009-06-02 17:58:47 +00:00
#define R_PAREN )
#define FUNC(a) a
static int glob = (1 + FUNC(1 R_PAREN );
2009-11-04 15:04:32 +00:00
// CHECK: static int glob = (1 + 1 );