fork download
  1. template<void(*Deleter)() noexcept>
  2. struct S {};
  3.  
  4. void CloseStdHandle() {}
  5.  
  6. int main()
  7. {
  8. S<CloseStdHandle>();
  9. return 0;
  10. }
Success #stdin #stdout 0s 4392KB
stdin
Standard input is empty
stdout
Standard output is empty