You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
505 B
14 lines
505 B
4 months ago
|
// RUN: not %clang_cc1 -fsyntax-only -triple i686-win32 %s 2>&1 | FileCheck %s
|
||
|
|
||
|
#include "Inputs\success.h"
|
||
|
|
||
|
// CHECK: error: 'Inputs\success.h' file not found
|
||
|
// CHECK: #include "Inputs\success.h"
|
||
|
// CHECK: ^
|
||
|
|
||
|
// This test is really checking that we *don't* replace backslashes with slashes
|
||
|
// on non-Windows unless -fms-extensions is passed. It won't fail in this way on
|
||
|
// Windows because the filesystem will interpret the backslash as a directory
|
||
|
// separator.
|
||
|
// UNSUPPORTED: system-windows
|