1 2 3 4 5 6 7 8 9 10 11
//DIAGNOSTIC_TEST(smoke):SIMPLE: // call function with wrong argument type struct A {}; struct B {}; void f(A a) {} void g(B b) { f(b); }