fork download
  1. #include <iostream>
  2. #define void int
  3.  
  4. using namespace std;
  5.  
  6. void f(){
  7. return void();//Создаем и возвращаем инстанс йода.
  8. };
  9.  
  10. int main() {
  11. void a = f();
  12. const void& b=a;
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 2676KB
stdin
Standard input is empty
stdout
Standard output is empty