Commit 4dbc1f5c by Nathanael Nerode

* g++.dg/lookup/two-stage1.C: New test.

From-SVN: r60814
parent 24c0ef37
2003-01-02 Nathanael Nerode <neroden@gcc.gnu.org>
* g++.dg/lookup/two-stage1.C: New test.
2003-01-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* g++.old-deja/g++.bugs/900404_04.C: Remove XFAIL.
......
/* PR c++/2437 */
/* { dg-do run } */
// Test of two-stage name lookup.
int g(double) { return 0; }
template <class T> struct X
{
int f() { return g(2); } // should call g(double)
};
inline int g(int) { return 1; }
int main()
{
return X<int>().f(); // should call g(double), but used to call g(int)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment