fork download
  1. #include <type_traits>
  2. #include <iostream>
  3.  
  4. struct X
  5. {
  6. void foobar();
  7. };
  8.  
  9. int main()
  10. {
  11. std::cout << std::is_function<void (X::*)()>() << '\n';
  12. }
  13.  
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
0