Created
July 10, 2016 16:00
-
-
Save banthar/b0d8a3c71c46219db788cc943e2c160b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Test { | |
static int a; | |
public static boolean f(int b) { | |
while(true) { | |
if( a==3 ) { | |
return true; | |
} | |
try { | |
int c = a + b; | |
if ( c == a ) { | |
return true; | |
} | |
} finally { | |
try { | |
return true; | |
} catch(NullPointerException | IllegalStateException e) { | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment