Chris Lattner | 1500881 | 2006-06-18 07:00:07 +0000 | [diff] [blame^] | 1 | /* |
2 | RUN: clang -E %s | grep bar && | ||||
3 | RUN: clang -E %s | grep foo && | ||||
4 | RUN: clang -E %s | not grep abc && | ||||
5 | RUN: clang -E %s | not grep xyz | ||||
6 | */ | ||||
7 | |||||
8 | /* abc | ||||
9 | |||||
10 | ends with normal escaped newline: | ||||
11 | *\ | ||||
12 | / | ||||
13 | |||||
14 | bar | ||||
15 | |||||
16 | /* xyz | ||||
17 | |||||
18 | |||||
19 | ends with a trigraph escaped newline: | ||||
20 | *??/ | ||||
21 | / | ||||
22 | |||||
23 | foo | ||||
24 |