var total = 0;

switch(3) { 
  case (1) { 
  ;
  } 
  case (4) { 
    total += 8; 
  } 
}

assert_equal(total, 6)
