Commit bfebe850 by Martin v. Löwis

New testcase.

From-SVN: r21059
parent a717c1f9
//Build don't link:
namespace X{
typedef int foo;
const int bar=2;
namespace Y{
void f(foo);
extern int g;
extern int g1;
struct h{
void i(foo);
};
}
}
void X::Y::f(foo)
{
}
int X::Y::g = bar;
int X::Y::g1(bar);
void X::Y::h::i(foo)
{}
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