forked from OSchip/llvm-project
9 lines
64 B
C++
9 lines
64 B
C++
|
struct A {
|
||
|
int x;
|
||
|
};
|
||
|
|
||
|
struct B : A {
|
||
|
int y;
|
||
|
int foo();
|
||
|
};
|