freebsd-dev/test/Preprocessor/macro_rparen_scan.c
2009-06-02 17:58:47 +00:00

9 lines
154 B
C

// RUN: clang-cc -E %s | grep '^3 ;$'
/* Right paren scanning, hard case. Should expand to 3. */
#define i(x) 3
#define a i(yz
#define b )
a b ) ;