File: HLint_TypeCheck.hs

package info (click to toggle)
hlint 3.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 988 kB
  • sloc: haskell: 7,098; lisp: 86; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 313 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

-- Used with --typecheck
module HLint_TypeCheck where

(==>) :: a -> a -> a
(==>) = undefined

_noParen_ = id


---------------------------------------------------------------------
-- EXAMPLES

main :: IO ()
main = return ()

{-# LINE 116 "data\\Default.hs" #-}
_test64 = \ p x -> (and (map p x)) ==> (all p x)