| 815 | class Non_Poly_Base {}; |
| 816 | class Non_Poly_Derived : public Non_Poly_Base {}; |
| 817 | int myfunction(Non_Poly_Base *) |
| 818 | { |
| 819 | return 2; |
| 820 | } |
| 821 | |
| 822 | TEST_CASE("Test Derived->Base with non-polymorphic classes") |
| 823 | { |
nothing calls this directly
no outgoing calls
no test coverage detected