xref: /aosp_15_r20/external/clang/test/VFS/framework-import.m (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 -F %t -ivfsoverlay %t.yaml -fsyntax-only %s
3*67e74705SXin Li// REQUIRES: shell
4*67e74705SXin Li
5*67e74705SXin Li#import <SomeFramework/public_header.h>
6*67e74705SXin Li
7*67e74705SXin Livoid foo() {
8*67e74705SXin Li  from_framework();
9*67e74705SXin Li}
10