* g++.old-deja/g++.ns/koenig8.C: New test.

From-SVN: r31239
This commit is contained in:
Nathan Sidwell 2000-01-05 11:48:19 +00:00 committed by Nathan Sidwell
parent f0b9bc6c88
commit cc6ecc6afd
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-01-05 Nathan Sidwell <nathan@acm.org>
* g++.old-deja/g++.ns/koenig8.C: New test.
2000-01-05 Nathan Sidwell <nathan@acm.org>
* g++.old-deja/g++.other/cast4.C: New test.

View File

@ -0,0 +1,14 @@
// Build don't link:
// Copyright (C) 1999 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 15 Dec 1999 <nathan@acm.org>
// caused an ICE determining whether to perform Koenig lookup
// when checking is enabled
template<class T> void Zap (T);
void V3 ()
{
Zap (1);
}