fork download
  1. #include <random>
  2.  
  3. int main()
  4. {
  5. using namespace std;
  6. mt19937_64 gen(random_device()());
  7. return 0;
  8. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function 'int main()':
prog.cpp:6:33: error: 'parameter' declared as function returning a function
  mt19937_64 gen(random_device()());
                                 ^
stdout
Standard output is empty