fork download
  1. class Foo {
  2. public:
  3. Foo(int x, int y) {}
  4. };
  5.  
  6. void bar(const Foo & foo) {};
  7.  
  8. int main()
  9. {
  10. bar({1,2});
  11. return 0;
  12. }
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty