1 // RUN: not %clang_cc1 -fsyntax-only -triple i686-win32 %s 2>&1 | FileCheck %s
2 
3 #include "Inputs\success.h"
4 
5 // CHECK: error: 'Inputs\success.h' file not found
6 // CHECK: #include "Inputs\success.h"
7 // CHECK:          ^
8 
9 // expected to fail on windows as the inclusion would succeed and the
10 // compilation will fail due to the '#error success'.
11 // XFAIL: win32
12 
13 // This test may or may not fail since 'Inputs\success.h' is passed
14 // to Win32 APIs on Windows.
15 // REQUIRES: disabled
16