fork download
  1. #include<iostream>
  2.  
  3. void operator"" test( const char* str, size_t sz )
  4. {
  5. std::cout<<str<<" world";
  6. }
  7.  
  8. int main()
  9. {
  10. "hello"test;
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
hello world