corrade-nucleus-nucleons – Blame information for rev 20

Subversion Repositories:
Rev:
Rev Author Line No. Line
20 office 1 public class InfiniteLoop {
2  
3 /*
4 * This will cause the program to hang...
5 *
6 * Taken from:
7 * http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308/
8 */
9 public static void main(String[] args) {
10 double d = Double.parseDouble("2.2250738585072012e-308");
11  
12 // unreachable code
13 System.out.println("Value: " + d);
14 }
15 }