Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / local6.C
blob4a87177c9a13d778021dc67cac25eb8e2bead247
1 template <class T> struct PCVector2 // { dg-message "note" }
3     template <class T2> PCVector2(const PCVector2<T> &cv) ; // { dg-message "note" }
5     PCVector2<T> operator- (const PCVector2<T> &ov) const 
6         { 
7           return PCVector2<T>(ov.xFIELD, ov.yFIELD); // { dg-error "matching" }
8           // { dg-message "candidate" "candidate note" { target *-*-* } 7 }
9         }
11     T xFIELD, yFIELD;
14 void findIntersection( PCVector2<double>& p0, PCVector2<double>& p1);
17 void findIntersection( PCVector2<double>& p0, PCVector2<double>& p1)
19     PCVector2<double> e = p1 - p0;      // { dg-message "instantiated" }