summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/ghci055.script
blob: 5f19cfdd5c37bbec57b7d30f2e75dd9a79a3092c (plain)
1
2
3
4
5
6
7
let x=undefined
let y=3 :: Integer
:force x
:show bindings
-- in 7.3 and earlier this used to print just "*** Exception:
-- Prelude.undefined", now we see bindings for x and y, and x's value
-- is printed as the exception.