[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / decl-attr-merge.mm
blob57f3f93df480e221c5aed3861de4b05664740868
1 // RUN: rm -rf %t.dir
2 // RUN: split-file %s %t.dir
3 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps \
4 // RUN:   -fmodules-cache-path=%t.dir/cache -triple x86_64-apple-macosx10.11.0 \
5 // RUN:   -I%t.dir/headers %t.dir/main.m -emit-llvm -o %t.dir/main.ll
6 // RUN: cat %t.dir/main.ll | FileCheck %s
8 //--- headers/a.h
10 __attribute__((availability(macos,introduced=10.16)))
11 @interface INIntent
12 - (instancetype)self;
13 @end
15 //--- headers/b.h
17 @class INIntent;
19 //--- headers/module.modulemap
21 module A {
22   header "a.h"
25 module B {
26   header "b.h"
29 //--- main.m
31 #import <a.h>
32 #import <b.h> // NOTE: Non attributed decl imported after one with attrs.
34 void F(id);
36 int main() {
37   if (@available(macOS 11.0, *))
38     F([INIntent self]);
41 // CHECK: @"OBJC_CLASS_$_INIntent" = extern_weak