Add two more (failing) tests from the take-2 branch.

These tests were recently fixed on the take-2 branch, but will require
additional work before they will pass here.
This commit is contained in:
Carl Worth 2010-05-28 15:15:59 -07:00
parent b1249f69fd
commit 614a9aece0
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,5 @@
#define paste(x,y) x ## y
paste(a,b)
paste(a,)
paste(,b)
paste(,)

View file

@ -0,0 +1,3 @@
#define double(a) a*2
#define foo double(
foo 5)