Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <iostream>
  2. #include <limits>
  3.  
  4. struct A
  5. {
  6. ~A(){ };
  7. };
  8.  
  9. A::A(){ }; //error: error: definition of implicitly declared default constructor
  10.  
  11. int main()
  12. {
  13. A a;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement