blob: aab1fbda4dd8b4c3a6f78eef01f0399bbcdfdb30 [file] [log] [blame]
Douglas Gregor7683a3f2010-04-12 07:51:13 +00001// RUN: %clang_cc1 -verify %s
2
3@interface A
4@end
5
6template<typename T>
7struct X0 {
8 void f(T); // expected-error{{interface type 'A' cannot be passed by value}}
9};
10
11X0<A> x0a; // expected-note{{instantiation}}
12