blob: eca6c5012144f0c5f3337b91be09f59d4ba5158f [file] [log] [blame]
// Copyright (C) 2001 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 26 Feb 2001 <nathan@codesourcery.com>
// Bug 1981. using declarations in namespace scope were not remembered.
namespace A
{
void swap () {}
};
template <class T> void f()
{
using A::swap;
}
template void f<float> ();
namespace B
{
int foo (int) { return 1;}
template <class T> int baz ()
{
using ::foo;
return foo (1);
}
template int baz<float> ();
};
int foo (int) { return 0;}
int main ()
{
return B::baz<float> ();
}