an implicitly exported namespace must be visible [module.interface]/2.2
| 38 | |
| 39 | // an implicitly exported namespace must be visible [module.interface]/2.2 |
| 40 | TEST(module_test, namespace) { |
| 41 | using namespace fmt; |
| 42 | using namespace fmt::literals; |
| 43 | ASSERT_TRUE(true); |
| 44 | } |
| 45 | |
| 46 | // Macros must not be imported from a named module [cpp.import]/5.1. |
| 47 | TEST(module_test, macros) { |
nothing calls this directly
no test coverage detected