[project @ 2001-03-29 10:45:58 by simonmar]
[ghc-hetmet.git] / ghc / tests / reader / should_compile / read009.hs
1 -- !!! combining undeclared infix operators
2 module ShouldCompile where
3
4 -- should default to 'infixl 9'
5
6 test = let f x y = x+y in 1 `f` 2 `f` 3
7