summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/shadow-bindings.stdout
blob: ef7d5bc9c6711c64f659e28a8e366afb7d7b646e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
True
Expecting foo = True
foo :: Bool = True
it :: () = ()
False
Expecting foo = False
foo :: Bool = False
it :: () = ()
type T :: *
data T = ...
Expecting T and Ghci1.T
type Ghci1.T :: *
data Ghci1.T = ...
type T :: *
data T = ...
it :: () = ()
Expecting T and T'
type T :: *
data T = ...
type T' :: *
data T' = ...
it :: () = ()
Expecting only T, no Ghci1.T
type T :: *
data T = ...
it :: () = ()
Expecting T and foo with function type
type T :: *
data T = ...
foo :: T -> Bool = _
it :: () = ()
Expecting T and foo :: Bool
type T :: *
data T = ...
foo :: Bool = True
it :: () = ()
Expecting foo, T
foo :: Bool = True
type T :: *
data T = ...
it :: () = ()