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