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