aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/lookup5.C
blob: 48dd004d826cca11c0bb3d7535de87ef34a965c4 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do assemble { xfail *-*-* } }
// Simplified from bug report by Paris Smaragdis <paris@media.mit.edu>


template <class T> class vector {};
class foo {};
int main() {
        foo f;
        f.vector(); // { dg-error "" } not a method
}