Commit b458ba78 by Martin v. Loewis Committed by Robert Lipe

From Martin Von Loewis.
       * g++.ns/{alias2.C, alias5.C, koenig4.C, lookup3.C ns13.C,
       ns14.C, ns15.C, template3.C, undef1.C, using4.C, using5.C,
       using6.C, using7.C}:  New namespace tests.

From-SVN: r21042
parent 80dba978
//Build don't link:
namespace NS1
{
int a;
}
namespace NS2 = NonExistant; //ERROR -
namespace foo{
int eine_funktion(int)
{
return 0;
}
}
namespace foo{
void eine_funktion(int,int)
{}
}
namespace bar = foo;
int main()
{
return bar::eine_funktion(3);
}
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