fork download
  1. #include <iostream>
  2.  
  3. template <class B>
  4. class A
  5. {
  6. public:
  7. void Foo(B& b)
  8. {
  9. static_cast<void (B::*)(float)>(&B::Bar);
  10.  
  11. b.Bar(0.5);
  12. }
  13. };
  14.  
  15. class B
  16. {
  17. public:
  18. //void Bar(float) {}
  19. void Bar(double) {}
  20. void Bar(int) {}
  21. };
  22.  
  23. int main() {
  24. A<B> a;
  25. B b;
  26. a.Foo(b);
  27.  
  28. return 0;
  29. }
Compilation error #stdin compilation error #stdout 0s 3336KB
stdin
Standard input is empty
compilation info
prog.cpp: In instantiation of ‘void A<B>::Foo(B&) [with B = B]’:
prog.cpp:26:9:   required from here
prog.cpp:9:8: error: no matches converting function ‘Bar’ to type ‘void (class B::*)(float)’
        static_cast<void (B::*)(float)>(&B::Bar);
        ^
prog.cpp:20:10: note: candidates are: void B::Bar(int)
     void Bar(int) {}
          ^
prog.cpp:19:10: note:                 void B::Bar(double)
     void Bar(double) {}
          ^
stdout
Standard output is empty