General Purpose library for Freestanding C++ and POSIX systems
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
#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{});
|