ref: cf20fb934e9af13b64c2365cbf95d974f30b5c9d dir: /tests/View.hs/
module View(main) where import Prelude f :: Int -> Int f ((> 10) -> True) = 1 f _ = 0 main :: IO () main = do print (f 20) print (f 10)