[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / SemaObjCXX / parameters.mm
bloba18701c90ac1244b3dc8019365f9c57cebe14eab
1 // RUN: %clang_cc1 -verify %s
3 @interface A
4 @end
6 template<typename T>
7 struct X0 {
8   void f(T); // expected-error{{interface type 'A' cannot be passed by value}}
9 };
11 X0<A> x0a; // expected-note{{instantiation}}
14 struct test2 { virtual void foo() = 0; };
15 @interface Test2
16 - (void) foo: (test2) foo ;
17 @end
19 template<typename T> void r1(__restrict T);
20 void r2(__restrict id x) { r1(x); }