1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify %s 2*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -E %s -o /dev/null 3*f4a2713aSLionel Sambuc 4*f4a2713aSLionel Sambuc // Note: This file deliberately contains invalid UTF-8. Please do not fix! 5*f4a2713aSLionel Sambuc 6*f4a2713aSLionel Sambuc extern int �x; // expected-error{{source file is not valid UTF-8}} 7*f4a2713aSLionel Sambuc 8*f4a2713aSLionel Sambuc #if 0 9*f4a2713aSLionel Sambuc // Don't warn about bad UTF-8 in raw lexing mode. 10*f4a2713aSLionel Sambuc extern int �x; 11*f4a2713aSLionel Sambuc #endif 12*f4a2713aSLionel Sambuc 13*f4a2713aSLionel Sambuc // Don't warn about bad UTF-8 in preprocessor directives. 14*f4a2713aSLionel Sambuc #define x82 � 15*f4a2713aSLionel Sambuc #pragma mark � 16