(boolean predicate)
| 254 | } |
| 255 | |
| 256 | private static int test6(boolean predicate) { |
| 257 | try { |
| 258 | if (predicate) { |
| 259 | return -2; |
| 260 | } |
| 261 | } finally { |
| 262 | return new Throwable().getStackTrace()[0].getLineNumber(); |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | public static void main(String[] args) throws Exception { |
| 267 | test(false, false); |
no test coverage detected