mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
17 lines
214 B
Java
17 lines
214 B
Java
class Overflow
|
|
{
|
|
static int test(int x)
|
|
{
|
|
return (2*x)/2;
|
|
}
|
|
|
|
public static void main(String argv[])
|
|
{
|
|
int x = Integer.MAX_VALUE;
|
|
|
|
if (test(x) == x)
|
|
throw new RuntimeException ();
|
|
}
|
|
}
|
|
|