fork(2) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct foo { static const int size = 3; };
  5.  
  6. template<int N>
  7. struct experiment { enum { val = N }; };
  8.  
  9. int main()
  10. {
  11. experiment<foo::size> b;
  12. // your code goes here
  13. return 0;
  14. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty