| 61 | |
| 62 | template <typename T> |
| 63 | class SomeClass { |
| 64 | public: |
| 65 | void SomeMethod5() const { |
| 66 | std::cout << nameof::nameof_type<T>() << std::endl; |
| 67 | } |
| 68 | |
| 69 | template <typename C> |
| 70 | C SomeMethod6() const { |
| 71 | C t{}; |
| 72 | std::cout << NAMEOF_TYPE_EXPR(t) << std::endl; |
| 73 | return t; |
| 74 | } |
| 75 | }; |
| 76 | |
| 77 | struct Long { |
| 78 | struct LL { |
nothing calls this directly
no outgoing calls
no test coverage detected