11 lines
112 B
C++
11 lines
112 B
C++
|
#include "shared.h"
|
||
|
|
||
|
struct WrapperB {
|
||
|
OuterY y;
|
||
|
OuterX x;
|
||
|
};
|
||
|
|
||
|
WrapperB* foo() {
|
||
|
return new WrapperB();
|
||
|
}
|