fork download
  1. #include <iostream>
  2. #include <type_traits>
  3. using namespace std;
  4.  
  5. class C
  6. {
  7. int i;
  8. double d;
  9. };
  10.  
  11. int main() {
  12. cout << std::is_pod<C>::value << endl;
  13. return 0;
  14. }
Success #stdin #stdout 0s 3140KB
stdin
Standard input is empty
stdout
1