blob: 5a615e572c13fd8ba052140eb2a73fc814dfdf15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: cd %S && %clang_cc1 -E - < stdin2.c
/*
* Bug 4897; current working directory should be searched
* for #includes when input is stdin.
*/
#ifndef BUG_4897
#define BUG_4897
#include "stdin2.c"
#endif
|