Jordan Rose | fc12060 | 2013-01-24 20:50:50 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Jordan Rose | 74c2498 | 2013-01-30 01:52:57 +0000 | [diff] [blame^] | 2 | // RUN: %clang_cc1 -E -DPP_ONLY=1 %s -o %t |
| 3 | // RUN: FileCheck --strict-whitespace --input-file=%t %s |
Jordan Rose | fc12060 | 2013-01-24 20:50:50 +0000 | [diff] [blame] | 4 | |
| 5 | // This file contains Unicode characters; please do not "fix" them! |
| 6 | |
| 7 | extern int x; // expected-warning {{treating Unicode character as whitespace}} |
| 8 | extern int x; // expected-warning {{treating Unicode character as whitespace}} |
Jordan Rose | 74c2498 | 2013-01-30 01:52:57 +0000 | [diff] [blame^] | 9 | |
| 10 | // CHECK: extern int {{x}} |
| 11 | // CHECK: extern int {{x}} |
| 12 | |
| 13 | #if PP_ONLY |
| 14 | CHECK: The preprocessor should not complain about Unicode characters like ©. |
| 15 | #endif |