[project @ 1998-02-12 14:57:41 by simonm]
[ghc-hetmet.git] / ghc / tests / reader / should_compile / read009.hs
1 module ShouldSucceed where
2
3 --!!! combining undeclared infix operators
4
5 -- should default to 'infixl 9'
6
7 test = let f x y = x+y in 1 `f` 2 `f` 3
8