(String[] args)
| 10 | * http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308/ |
| 11 | */ |
| 12 | public static void main(String[] args) { |
| 13 | double d = Double.parseDouble("2.2250738585072012e-308"); |
| 14 | |
| 15 | // unreachable code |
| 16 | System.out.println("Value: " + d); |
| 17 | } |
| 18 | } |
no outgoing calls
no test coverage detected