re PR c++/2922 ([DR 197] two-stage lookup for unqualified function calls with type-dependent arguments)

2005-07-21  Douglas Gregor  <doug.gregor@gmail.com>

	PR c++/2922
	* g++.dg/lookup/two-stage5.C: New test from bug comments.

From-SVN: r102236
This commit is contained in:
Douglas Gregor 2005-07-21 15:14:59 +00:00 committed by Doug Gregor
parent b8bcbe3ae8
commit 5b8ce8f102
2 changed files with 24 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-07-21 Douglas Gregor <doug.gregor@gmail.com>
PR c++/2922
* g++.dg/lookup/two-stage5.C: New test from bug comments.
2005-07-21 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c++/15938

View File

@ -0,0 +1,19 @@
// { dg-do run }
extern "C" void abort ();
namespace N {
template <class T> T foo (T) { return T (); }
template <class T> T bar (T t) { return foo (t); }
}
struct S { S (int i = 0): i_ (i) { } int i_; };
namespace N {
/* template <> */ S foo (S) { return S (1); }
}
int main ()
{
if (1 == N::bar (S()).i_)
abort ();
}