Daniel Dunbar | 8fbe78f | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -E %s | grep '^3 ;$' |
Chris Lattner | 85c0e4d | 2006-07-19 06:40:07 +0000 | [diff] [blame] | 2 | |
3 | /* Right paren scanning, hard case. Should expand to 3. */ | ||||
4 | #define i(x) 3 | ||||
5 | #define a i(yz | ||||
6 | #define b ) | ||||
7 | a b ) ; | ||||
8 |