```rescript @unboxed type t = Tuple(int, string) ``` fails with the error: ``` This type cannot be unboxed because its constructor has more than one argument. ``` which is wrong, because it does produce the expected output if I add just a few more parens, making it an explicit tuple which should be equivalent. ```rescript @unboxed type t = Tuple((int, string)) ```