diff options
Diffstat (limited to 'testsuite/tests/ghci/scripts/ghci025.stdout')
-rw-r--r-- | testsuite/tests/ghci/scripts/ghci025.stdout | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/testsuite/tests/ghci/scripts/ghci025.stdout b/testsuite/tests/ghci/scripts/ghci025.stdout index 80c4d4b7a5..7cea3e97ef 100644 --- a/testsuite/tests/ghci/scripts/ghci025.stdout +++ b/testsuite/tests/ghci/scripts/ghci025.stdout @@ -96,24 +96,24 @@ c4 :: forall a b. C a b => forall a1. a1 -> b -- test :browse! <target> relative to different contexts :browse! Ghci025C -- from *Ghci025C> -- defined locally -g :: forall a. Num a => a -> a -h :: forall a. Integral a => a -> a +g :: forall {a}. Num a => a -> a +h :: forall {a}. Integral a => a -> a -- imported via Ghci025D -f :: forall a. Num a => a -> a +f :: forall {a}. Num a => a -> a :browse! Ghci025C -- from *Ghci025B>, after :add Ghci025B -- imported via Ghci025C -g :: forall a. Num a => a -> a -h :: forall a. Integral a => a -> a -f :: forall a. Num a => a -> a +g :: forall {a}. Num a => a -> a +h :: forall {a}. Integral a => a -> a +f :: forall {a}. Num a => a -> a :browse! Ghci025C -- from *Ghci025C>, after :m *Ghci025C -- defined locally -g :: forall a. Num a => a -> a -h :: forall a. Integral a => a -> a +g :: forall {a}. Num a => a -> a +h :: forall {a}. Integral a => a -> a -- imported via Ghci025D -f :: forall a. Num a => a -> a +f :: forall {a}. Num a => a -> a :browse! Ghci025C -- from *Ghci025D>, after :m *Ghci025D -- not currently imported -Ghci025C.g :: forall a. Num a => a -> a -Ghci025C.h :: forall a. Integral a => a -> a +Ghci025C.g :: forall {a}. Num a => a -> a +Ghci025C.h :: forall {a}. Integral a => a -> a -- defined locally -f :: forall a. Num a => a -> a +f :: forall {a}. Num a => a -> a |