
we've set all of its parameters. Fixes <rdar://problem/8499598>; thanks to Sean for the diagnosis. llvm-svn: 115387
16 lines
143 B
C++
16 lines
143 B
C++
struct A {
|
|
int x;
|
|
};
|
|
|
|
struct B : A {
|
|
float y;
|
|
float foo();
|
|
};
|
|
|
|
struct C {
|
|
C(int i = 10);
|
|
C(const C&);
|
|
C &operator=(C&);
|
|
~C();
|
|
};
|