/* should not generate diagnostics */ function simpleBranches() { if (firstCondition) { // +1 return 1; } else if (secondCondition) { // +1 return 2; } else { // +1 return 3; } }