(String[] args)
| 8 | public class Args { |
| 9 | |
| 10 | public static void main(String[] args) { |
| 11 | captureRecv(); |
| 12 | captureNoRecv(); |
| 13 | actualRecv(); |
| 14 | actualNoRecv(); |
| 15 | captureWithActualRecv(); |
| 16 | captureWithActualNoRecv(); |
| 17 | } |
| 18 | |
| 19 | static void captureRecv() { |
| 20 | // method reference |
nothing calls this directly
no test coverage detected