| 7 | #if(__cpp_nontype_template_args >= 201911) && not defined(__clang__) |
| 8 | template<double x> |
| 9 | struct A; // #A A type which uses double as NTTP |
| 10 | |
| 11 | // #B Different bit pattern results in different type |
| 12 | static_assert(not std::is_same_v<A<+0.6 - 0.2>, A<0.4>>); |
nothing calls this directly
no outgoing calls
no test coverage detected