blob: 7e06b6d375cb3b665a905477acf94a0d1e7d30d2 [file] [log] [blame]
Chris Lattner3f1cc832008-02-07 06:03:59 +00001// RUN: clang %s -fsyntax-only -fms-extensions
2// This horrible stuff should preprocess into (other than whitespace):
3// int foo;
4// int bar;
5// int baz;
6
7int foo;
8
9#define comment /##/ dead tokens live here
10comment This is stupidity
11
12int bar;
13
14#define nested(x) int x comment cute little dead tokens...
15
16nested(baz) rise of the dead tokens
17
18;
19