This commit is contained in:
Henrique Dias
2017-03-25 19:37:42 +00:00
parent b2e921e5a9
commit 7187de361b
1580 changed files with 560980 additions and 6 deletions
@@ -0,0 +1,15 @@
public class InfiniteLoop {
/*
* This will cause the program to hang...
*
* Taken from:
* http://www.exploringbinary.com/java-hangs-when-converting-2-2250738585072012e-308/
*/
public static void main(String[] args) {
double d = Double.parseDouble("2.2250738585072012e-308");
// unreachable code
System.out.println("Value: " + d);
}
}