blob: 5594d6c7d799bac9313dd467b367d694955048c4 [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -fsyntax-only -verify %s
2template<typename> struct PassRefPtr { };
3template<typename T> struct RefPtr {
4 RefPtr& operator=(const RefPtr&) { int a[sizeof(T) ? -1 : -1];} // expected-error 2 {{array size is negative}}
5 RefPtr& operator=(const PassRefPtr<T>&);
6};
7
8struct A { RefPtr<int> a; };
9struct B : RefPtr<float> { };
10
11void f() {
12 A a1, a2;
13 a1 = a2; // expected-note {{instantiation of member function 'RefPtr<int>::operator=' requested here}}
14
15 B b1, b2;
16 b1 = b2; // expected-note {{in instantiation of member function 'RefPtr<float>::operator=' requested here}}
17}