ChaiScript/unittests/switch_fallthru.chai
2012-05-17 12:43:25 -07:00

19 lines
201 B
ChaiScript

var total = 0;
switch(2) {
case (1) {
total += 1;
}
case (2) {
total += 2;
}
case (3) {
total += 4;
}
case (4) {
total += 8;
}
}
assert_equal(total, 14);