mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 20:01:21 +08:00
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:
parent
b8bcbe3ae8
commit
5b8ce8f102
@ -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
|
||||
|
19
gcc/testsuite/g++.dg/lookup/two-stage5.C
Normal file
19
gcc/testsuite/g++.dg/lookup/two-stage5.C
Normal 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 ();
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user