blob: e4de5dbcef0c95f92c3aa2d2a0767143b0067a66 [file] [log] [blame]
Daniel Dunbar8fbe78f2009-12-15 20:14:24 +00001// RUN: %clang_cc1 -E %s | grep '^3 ;$'
Chris Lattner85c0e4d2006-07-19 06:40:07 +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