aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/lookup5.C
blob: 9fe041511428416d61d05cb2b8fee7184a9e688d (plain)
1
2
3
4
5
6
7
8
9
10
11
// Build don't link:
// Simplified from bug report by Paris Smaragdis <paris@media.mit.edu>

// crash test - XFAIL *-*-*

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