General Purpose library for Freestanding C++ and POSIX systems
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
#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{});
|