fork download
  1. #include <iostream>
  2. struct A {
  3. void operator()() {std::cout << "yes";}
  4. };
  5.  
  6. int main() {
  7. A()();
  8. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
yes