fork download
  1. #include <iostream>
  2.  
  3. #define aConstant foo()
  4.  
  5. int foo() {
  6. return 2;
  7. }
  8.  
  9. int main() {
  10. std::cout << aConstant;
  11. }
  12.  
  13.  
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
2