summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/ghci013.script
blob: eec0af840afd3413da7f2afe304f667f7ba3c478 (plain)
1
2
3
4
5
-- type-variable tidying problem in 6.4
-- incorrect type: (Monad m) => (m a, b) -> m b
-- correct   type: (Monad m) => (m a, b) -> m b1
let f (a,b) = a >> undefined
:t f