| 8 | import boost.ut; |
| 9 | |
| 10 | int main() { |
| 11 | using namespace boost::ut; |
| 12 | |
| 13 | "module"_test = [] { |
| 14 | // clang-format off |
| 15 | expect(42_i == 42 and constant<3 == 3_i>); |
| 16 | // clang-format on |
| 17 | expect(std::vector{1, 2, 3} == std::vector{1, 2, 3}); |
| 18 | }; |
| 19 | } |