OSDN Git Service

Formatting fixes.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / lookup5.C
1 // { dg-do assemble { xfail *-*-* } }
2 // Simplified from bug report by Paris Smaragdis <paris@media.mit.edu>
3
4
5 template <class T> class vector {};
6 class foo {};
7 int main() {
8         foo f;
9         f.vector(); // { dg-error "" } not a method
10 }