var total = 0;

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

assertint16_t_equal(total, 16)
