| 153 | |
| 154 | template <class T> |
| 155 | class SuperList { |
| 156 | public: |
| 157 | SuperList(); |
| 158 | SuperList(T); |
| 159 | SuperList(int, int); |
| 160 | ~SuperList(); |
| 161 | int at(int); |
| 162 | }; |
| 163 | |
| 164 | /*! \class SuperList */ |
| 165 |
nothing calls this directly
no outgoing calls
no test coverage detected