[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / shadow-framework.m
blob0d5c439a8a31c23c92b0b48716ceb63aa89cb42c
1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
4 // This test checks that redefinitions of frameworks are ignored.
6 //--- include/module.modulemap
7 module first { header "first.h" }
8 module FW {}
9 //--- include/first.h
11 //--- frameworks/FW.framework/Modules/module.modulemap
12 framework module FW { header "FW.h" }
13 //--- frameworks/FW.framework/Headers/FW.h
15 //--- tu.c
16 #import "first.h" // expected-remark {{importing module 'first'}}
17 #import <FW/FW.h>
19 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t/cache -fimplicit-module-maps \
20 // RUN:   -I %t/include -F %t/frameworks -fsyntax-only %t/tu.c -Rmodule-import -verify