blob: db01e47995a81e489698cc4e394c36eadd2c814b [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc %s -E | grep "^ 4" &&
Reid Spencer5f016e22007-07-11 17:01:13 +00002#define FOO __LINE__
3
4 FOO
Chris Lattnerc8fbd442009-02-15 21:06:15 +00005
6// PR3579 - This should expand to the __LINE__ of the ')' not of the X.
Daniel Dunbard7d5f022009-03-24 02:24:46 +00007// RUN: clang-cc %s -E | grep "^A 13"
Chris Lattnerc8fbd442009-02-15 21:06:15 +00008
9#define X() __LINE__
10
11A X(
12
13)