fork(2) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. #define X(...) __VA_ARGS__
  5.  
  6. struct mystruct {
  7. int a,b,c;
  8. };
  9.  
  10. int main()
  11. {
  12. mystruct s = X({1,2,3});
  13. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty