// Makefile compiles this code with different DBC_CHECKING... #definitions. // Always verbose logging for this test (so you can see what is checked). #define DBC_CONFIG_LOG_LEVEL DBC_LOG_LEVEL_ALL #include "number.hpp" #include int main() { number i(10); std::cout << (i / 4.321) << std::endl; return 0; }