xref: /aosp_15_r20/external/clang/test/VFS/include.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li // RUN: sed -e "s:INPUT_DIR:%S/Inputs:g" -e "s:OUT_DIR:%t:g" %S/Inputs/vfsoverlay.yaml > %t.yaml
2*67e74705SXin Li // RUN: %clang_cc1 -Werror -I %t -ivfsoverlay %t.yaml -fsyntax-only %s
3*67e74705SXin Li // REQUIRES: shell
4*67e74705SXin Li 
5*67e74705SXin Li #include "not_real.h"
6*67e74705SXin Li 
foo()7*67e74705SXin Li void foo() {
8*67e74705SXin Li   bar();
9*67e74705SXin Li }
10