From-SVN: r32122
This commit is contained in:
Jason Merrill 2000-02-23 15:23:15 -05:00
parent 525bc95d4a
commit 2b4c135643

View File

@ -0,0 +1,9 @@
// 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);