Commit 2b4c1356 by Jason Merrill

new

From-SVN: r32122
parent 525bc95d
// Test that defining a static member of private type with the () syntax works.
// Build don't link:
class A {
private:
struct B { B(int) {} };
static B b;
};
A::B A::b (1);
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