If I am using reference tuples, this compiles:
let plot(x: int, y: int) = ()
let point = 3, 4
plot(fst point, snd point)
However, if I am using struct tuples...
let plot(x: int, y: int) = ()
let point = struct (3, 4)
plot(fst point, snd point)
... I get the compiler error, One tuple type is a struct tuple, the other is a reference tuple
What should I do?