blob: 7514c4cfdcc06c29f9b1765e27dbfc32060706f5 (
plain) (
tree)
|
|
#include <cstdio>
#define MEOWPP_DEBUG_ASSERT_TESTING
namespace test {
void abort() {
printf("Do abort()\n");
}
}
#include <meowpp/debug/assert.h>
using namespace meow;
int main() {
Assert(1 == 1, "hi");
Assert(1 == 0, "no!!!%s %d", "bla", 13);
return 0;
}
|