blob: 26e77f61fdd092256932653429eafbdab80f59b8 [file] [log] [blame]
Jordan Rosefc120602013-01-24 20:50:50 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Jordan Rose74c24982013-01-30 01:52:57 +00002// RUN: %clang_cc1 -E -DPP_ONLY=1 %s -o %t
3// RUN: FileCheck --strict-whitespace --input-file=%t %s
Jordan Rosefc120602013-01-24 20:50:50 +00004
5// This file contains Unicode characters; please do not "fix" them!
6
7extern int x; // expected-warning {{treating Unicode character as whitespace}}
8extern int x; // expected-warning {{treating Unicode character as whitespace}}
Jordan Rose74c24982013-01-30 01:52:57 +00009
10// CHECK: extern int {{x}}
11// CHECK: extern int {{x}}
12
13#if PP_ONLY
14CHECK: The preprocessor should not complain about Unicode characters like ©.
15#endif