Commit 5e8ad514 by Martin v. Löwis

New test cases.

From-SVN: r25422
parent b262d64c
//Build don't link:
namespace A{
namespace B{int i;}
using namespace B;
}
namespace C=A;
void f(){
C::i = 1;
}
//Build don't link:
namespace foo
{
class c
{
};
};
int
foo::c:fn () // ERROR - syntax error
{
}
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