I have the following simple definition.
f :: Int -> Int
f x = bla + blub
where blub = 1
bla = 1
The compiler gives me the error test.hs:4:21: parse error on input '='
I know about the indention rules, but all seems to be well indented here.