fork download
  1. #include <iostream>
  2. typedef int T;
  3. int main()
  4. {
  5. int a=3;
  6. std::cout<<a<<'\n';
  7. a.~T();
  8. std::cout<<a;
  9. return 0;
  10. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
3
3