| 650 | // disambiguates against the longer variant. |
| 651 | struct Mix { |
| 652 | int Run(int, int) { return 1000; } |
| 653 | int Run(int, double) { return 2000; } |
| 654 | int Run(int, int, int) { return 3000; } |
| 655 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected