fork download
  1. #include <iostream>
  2.  
  3. #define foo(a) ((b) + 1)
  4.  
  5. int main() {
  6. int b = 5;
  7. std::cout << foo(1) << "\n";
  8. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
6