fork download
  1. int main()
  2. {
  3. int x;
  4.  
  5. const int& p = x;
  6. int const& r = x;
  7.  
  8. return 0;
  9. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
Standard output is empty