
This is required in order to test: The ASTImporter should set base classes after formally entering the definition. llvm-svn: 105401
9 lines
68 B
C++
9 lines
68 B
C++
struct A {
|
|
int x;
|
|
};
|
|
|
|
struct B : A {
|
|
float y;
|
|
float foo();
|
|
};
|