Guest User

Untitled

a guest
Jun 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. template <class T> class C {
  2. public:
  3. C() {
  4. t = new T(100);
  5. }
  6. ~C() {
  7. delete t;
  8. }
  9. T * t;
  10. };
  11.  
  12. int main(int argc, char** argv) {
  13. C <int> x;
  14. }
Add Comment
Please, Sign In to add comment