[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Lexer / cross-windows-on-linux.cpp
blob3932ffcb33c82cdb0993760375ea431878952d1e
1 // RUN: not %clang_cc1 -fsyntax-only -triple i686-win32 %s 2>&1 | FileCheck %s
3 #include "Inputs\success.h"
5 // CHECK: error: 'Inputs\success.h' file not found
6 // CHECK: #include "Inputs\success.h"
7 // CHECK: ^
9 // This test is really checking that we *don't* replace backslashes with slashes
10 // on non-Windows unless -fms-extensions is passed. It won't fail in this way on
11 // Windows because the filesystem will interpret the backslash as a directory
12 // separator.
13 // UNSUPPORTED: system-windows