libstdc++: Fix std::find for non-contiguous iterators [PR115799]
[official-gcc.git] / gcc / testsuite / g++.dg / template / error-recovery2.C
blobd5ce12311e3a8faf61c7d03ce479f219bd960a31
1 // PR c++/43621
3 template <typename T>
4 class A {
5   template <typename>
6   A<T> A<T>::f();               // { dg-error "extra qualification" }
7 };