以下の関数呼び出しのうち、型エラーが発生しないものはどれですか? ```typescript function calculateTotal(price: number, tax: number = 0.1): number { return price * (1 + tax); } ```