diff options
Diffstat (limited to 'gcc/testsuite/g++.dg/template/local6.C')
-rw-r--r-- | gcc/testsuite/g++.dg/template/local6.C | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/template/local6.C b/gcc/testsuite/g++.dg/template/local6.C new file mode 100644 index 000000000..4a87177c9 --- /dev/null +++ b/gcc/testsuite/g++.dg/template/local6.C @@ -0,0 +1,20 @@ +template <class T> struct PCVector2 // { dg-message "note" } +{ + template <class T2> PCVector2(const PCVector2<T> &cv) ; // { dg-message "note" } + + PCVector2<T> operator- (const PCVector2<T> &ov) const + { + return PCVector2<T>(ov.xFIELD, ov.yFIELD); // { dg-error "matching" } + // { dg-message "candidate" "candidate note" { target *-*-* } 7 } + } + + T xFIELD, yFIELD; +}; + +void findIntersection( PCVector2<double>& p0, PCVector2<double>& p1); + + +void findIntersection( PCVector2<double>& p0, PCVector2<double>& p1) +{ + PCVector2<double> e = p1 - p0; // { dg-message "instantiated" } +} |