fork download
  1. struct Object
  2. {
  3. bool close() {return false;}
  4. };
  5.  
  6. template <typename ...Args_t>
  7. bool objectsDo(bool (Object::*func)(Args_t...), Args_t&&... args) {return false;}
  8.  
  9. int main()
  10. {
  11. objectsDo(&Object::close);
  12. }
  13.  
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty