John McCall 1c70e99a2c Hack in some really terrible C++ record PCH support that I need right now.
This is required in order to test:

The ASTImporter should set base classes after formally entering the definition.

llvm-svn: 105401
2010-06-03 19:28:45 +00:00

9 lines
68 B
C++

struct A {
int x;
};
struct B : A {
float y;
float foo();
};