| 10773 | |
| 10774 | template <typename T = int> |
| 10775 | void TestNotEmpty() { |
| 10776 | static_assert(sizeof(T) == 0, "Empty arguments are not allowed."); |
| 10777 | } |
| 10778 | template <typename T = int> |
| 10779 | void TestNotEmpty(const T&) {} |
| 10780 |
nothing calls this directly
no outgoing calls
no test coverage detected