fork download
  1. #include <iostream>
  2. using namespace std;
  3. void test(int)
  4. {
  5. }
  6.  
  7. void test(double, int)
  8. {
  9. }
  10.  
  11. auto a = static_cast<void(*)(double, int)>(test);
  12. int main() {
  13. // your code goes here
  14. return 0;
  15. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty