aboutsummaryrefslogtreecommitdiff
path: root/html-test/tests/FunArgs.hs
blob: b34d84b7d7898ce50fee42ce3303947a63c27d43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module FunArgs where

f :: forall a. Ord a
  => Int          -- ^ First argument
  -> a            -- ^ Second argument
  -> Bool         -- ^ Third argument
  -> (a -> a)     -- ^ Fourth argument
  -> ()           -- ^ Result
f = undefined


g :: a -- ^ First argument
  -> b -- ^ Second argument
  -> c -- ^ Third argument
  -> d -- ^ Result
g = undefined