One example where it's ambiguous is this match arm:
a if b => c => d
Which can be parsed as one of
a if (b => c) => d
// or
a if b => (c => d)
We could just say that it's left associative, so it's parsed like the second case, but I'd prefer a less ambiguous syntax.