[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / implementation-of-module-private.m
blobf6ca2a8809c6b35a3ecf16bb10635969eea6715d
1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
4 //--- frameworks/FW.framework/Modules/module.modulemap
5 framework module FW {}
6 //--- frameworks/FW.framework/Modules/module.private.modulemap
7 framework module FW_Private {}
9 //--- tu.m
10 @import FW_Private; // expected-error{{@import of module 'FW_Private' in implementation of 'FW'; use #import}}
12 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t/cache -fimplicit-module-maps \
13 // RUN:   -fmodule-name=FW -F %t/frameworks %t/tu.m -verify