diff options
author | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2020-08-20 17:30:51 +0200 |
---|---|---|
committer | Krzysztof Gogolewski <krzysztof.gogolewski@tweag.io> | 2020-08-23 14:12:53 +0200 |
commit | 8b86509270227dbc61f0700c7d9261a4c7672361 (patch) | |
tree | 8f95fd86fa1c052f12aefa7a1038519910ffafeb /testsuite/tests/ghci/scripts/T8535.stdout | |
parent | 3f50154591ada9064351ccec4adfe6df53ca2439 (diff) | |
download | haskell-8b86509270227dbc61f0700c7d9261a4c7672361.tar.gz |
Do not print synonyms in :i (->), :i Type (#18594)
This adds a new printing flag `sdocPrintTypeAbbreviations` that is used
specifically to avoid ghci printing 'type (->) = (->)' and 'type Type = Type'.
Diffstat (limited to 'testsuite/tests/ghci/scripts/T8535.stdout')
-rw-r--r-- | testsuite/tests/ghci/scripts/T8535.stdout | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/ghci/scripts/T8535.stdout b/testsuite/tests/ghci/scripts/T8535.stdout index f7e40fd0f4..5786372e9d 100644 --- a/testsuite/tests/ghci/scripts/T8535.stdout +++ b/testsuite/tests/ghci/scripts/T8535.stdout @@ -1,5 +1,5 @@ type (->) :: * -> * -> * -type (->) = (->) :: * -> * -> * +type (->) = FUN 'Many :: * -> * -> * -- Defined in ‘GHC.Types’ infixr -1 -> instance Applicative ((->) r) -- Defined in ‘GHC.Base’ |