fork(2) download
  1. class Turd
  2. {
  3. public:
  4. int x;
  5. };
  6.  
  7. void f( const Turd& t )
  8. {}
  9.  
  10. int main() {
  11. f( { 12 } );
  12. return 0;
  13. }
Success #stdin #stdout 0s 15224KB
stdin
Standard input is empty
stdout
Standard output is empty