Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
j2k
/
testData
/
fileOrElement
/
switch
/
fallDownWithBlocks.java
blob: 7be97efe62d5cb3f81c71a6908edf5e104b48240 [
file
] [
log
] [
blame
]
//file
public
class
C
{
public
static
void
main
(
String
[]
args
)
{
switch
(
args
.
length
)
{
case
1
:
{
int
a
=
1
;
System
.
out
.
print
(
"1"
);
}
case
2
:
{
int
a
=
2
;
System
.
out
.
print
(
"2"
);
}
}
}
}