summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T20627.script
blob: b9f74787672f69d540e56148b8d5ad7dcf399b7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
:set -XNoStarIsType

putStrLn "\nType and Constraint unqualified:"
:k (->)
:k Functor

data Type

putStrLn "\nType qualified, Constraint unqualified:"
:k (->)
:k Functor

data Constraint

putStrLn "\nType and Constraint qualified:"
:k (->)
:k Functor