| 304 | |
| 305 | template <typename T> |
| 306 | void TestPrefixPostfix() |
| 307 | { |
| 308 | SafeInt<T> st; |
| 309 | st++; |
| 310 | st--; |
| 311 | ++st; |
| 312 | --st; |
| 313 | } |
| 314 | |
| 315 | template <typename T> |
| 316 | void TestCompileT() |
nothing calls this directly
no outgoing calls
no test coverage detected