General Purpose library for Freestanding C++ and POSIX systems
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

27 行
409 B

#include "test_scaffold.h"
struct meta_test : public test_scaffold {
meta_test() {
name = __FILE__ ":1";
}
virtual int run() {
return 0;
}
};
struct meta_test2 : public test_scaffold {
meta_test2() {
name = __FILE__ ":2";
}
class carrot{};
virtual int run() {
// throw carrot{};
return 0;
}
};
append_test dummy_r3436r43(new meta_test{});
append_test dummy_dfh486df(new meta_test2{});