1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
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();
|
|
};
|