blob: d720edbd0f3a912528893bc3d932560f5c129914 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
:unset +s
:unset +t
:!cp A1.hs A.hs
:load B
-- eval something that isn't exported from B
z
:!sleep 1
:!touch A.hs
:reload
-- A should be recompiled, B will be skipped. We should still have
-- the full top-level scope of B available, though. This was
-- nearly broken in GHC 6.4
z
|