There was an error while loading. Please reload this page.
a.ml
let f = fun [@bs] x -> let a,b = x in a + b
bsc.exe -i a.ml
val f : int -> int -> int [@bs]
This should be
val f : int * int -> int [@bs]