This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Class that must be inherited (START) | |
struct A { | |
int a; | |
}; | |
// Class that must be inherited (END) | |
// Class that must inherit from A(parent class) (START) | |
struct B { | |
struct A super; |