summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T8639.script
blob: a7db1727a55c7007a8842e4ebd6dc60417017413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
:l T8639.hs
:t it
bit
:t it
   -- Gets the last thing evaluated (T8639.bit)
:t T8639.it
   -- Gets 'it' from T8639

:m -T8639
import T8639 as Q

:t bit
:t Q.bit
:t H.bit
   -- Should say "out of scope"
:t it
   -- Gets the last thing evaluated (T8639.bit)
:t Q.it
   -- Gets 'it' from T8639