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

26 行
409 B

  1. #include "test_scaffold.h"
  2. struct meta_test : public test_scaffold {
  3. meta_test() {
  4. name = __FILE__ ":1";
  5. }
  6. virtual int run() {
  7. return 0;
  8. }
  9. };
  10. struct meta_test2 : public test_scaffold {
  11. meta_test2() {
  12. name = __FILE__ ":2";
  13. }
  14. class carrot{};
  15. virtual int run() {
  16. // throw carrot{};
  17. return 0;
  18. }
  19. };
  20. append_test dummy_r3436r43(new meta_test{});
  21. append_test dummy_dfh486df(new meta_test2{});