General Purpose library for Freestanding C++ and POSIX systems
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 line
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{});