blob: 522f8aea59ab6d745aab1416c2212828ea7d414e [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
extern "C" void f ();
namespace N {
extern "C" void f ();
}
using N::f;
void g ()
{
f ();
}