| 15 | // STRUCT TEMPLATE remove_reference |
| 16 | template <class _Ty> |
| 17 | struct remove_reference { |
| 18 | using type = _Ty; |
| 19 | }; |
| 20 | |
| 21 | template <class _Ty> |
| 22 | struct remove_reference<_Ty&> { |
nothing calls this directly
no outgoing calls
no test coverage detected