fork download
  1. #include <iostream>
  2.  
  3. int func() {
  4. return int(3);
  5. }
  6.  
  7. int main() {
  8. const int &A = func();
  9. std::cout << A << std::endl;
  10. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
3