[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / PCH / method_pool.m
blob139f8ba4a69bddc60fda45cb156f7e7c9e23b9ca
1 // Test this without pch.
2 // RUN: %clang_cc1 -include %S/method_pool.h -fsyntax-only -verify -Wno-objc-root-class %s
4 // Test with pch.
5 // RUN: %clang_cc1 -x objective-c -Wno-objc-root-class -emit-pch -o %t %S/method_pool.h
6 // RUN: %clang_cc1 -include-pch %t -fsyntax-only -verify -Wno-objc-root-class %s 
8 int message_id(id x) {
9    return [x instMethod:17]; // expected-warning{{multiple methods}}
12 /* expected-note@method_pool.h:17{{using}} */
13 /* expected-note@method_pool.h:21{{also}} */