10 lines
87 B
C
10 lines
87 B
C
struct Incomplete;
|
|
|
|
struct X : Incomplete {
|
|
X();
|
|
};
|
|
|
|
struct Y : X {
|
|
using X::X;
|
|
};
|