lookup5.C: New test.

* g++.old-deja/g++.other/lookup5.C: New test.  Not sure the
	problem is actually related with name lookup, but so what? :-)

From-SVN: r23877
This commit is contained in:
Alexandre Oliva 1998-11-25 18:29:12 +00:00 committed by Alexandre Oliva
parent 2e3e9ead11
commit 51a6311276
2 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,8 @@
1998-11-26 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.other/lookup5.C: New test. Not sure the
problem is actually related with name lookup, but so what? :-)
* g++.old-deja/g++.pt/friend37.C: New test.
1998-11-25 Dave Love <d.love@dl.ac.uk>

View File

@ -0,0 +1,9 @@
// Build don't link:
// Simplified from bug report by Paris Smaragdis <paris@media.mit.edu>
template <class T> class vector {};
class foo {};
int main() {
foo f;
f.vector(); // gets bogus error - ICE - XFAIL *-*-*
}