blob: e4de5dbcef0c95f92c3aa2d2a0767143b0067a66 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -E %s | grep '^3 ;$'
Reid Spencer5f016e22007-07-11 17:01:13 +00002
3/* Right paren scanning, hard case. Should expand to 3. */
4#define i(x) 3
5#define a i(yz
6#define b )
7a b ) ;
8