Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
art
/
0f9b9c508814a62c6e21c6a06cfe4de39b5036c0
/
.
/
test
/
095-switch-MAX_INT
/
src
/
Main.java
blob: d1171ea6bc98b70d2e7d0d48ddb43b347485b0ee [
file
] [
log
] [
blame
]
public
class
Main
{
static
public
void
main
(
String
[]
args
)
throws
Exception
{
switch
(
0x7fffffff
)
{
case
0x7fffffff
:
System
.
err
.
println
(
"good"
);
break
;
default
:
throw
new
AssertionError
();
}
}
}