diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2015-03-07 11:37:52 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2015-03-07 11:41:49 +0100 |
commit | 479523f3c37894d63352f1718e06696f3ed63143 (patch) | |
tree | 7a6331746442bd7b64d94bbcf68ab69c91255977 /testsuite | |
parent | eb3661f2b9f8472f3714774126ebe1183484dd85 (diff) | |
download | haskell-479523f3c37894d63352f1718e06696f3ed63143.tar.gz |
Re-export `<$` from Prelude (#10113)
This is a follow-up to eb3661f2b9f8472f3714774126ebe1183484dd85
re-exporting `<$` from `Prelude` as well.
Reviewed By: austin, ekmett
Differential Revision: https://phabricator.haskell.org/D681
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/indexed-types/should_compile/Simple15.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/indexed-types/should_compile/Simple15.hs b/testsuite/tests/indexed-types/should_compile/Simple15.hs index 8a28d27b6f..31829d6349 100644 --- a/testsuite/tests/indexed-types/should_compile/Simple15.hs +++ b/testsuite/tests/indexed-types/should_compile/Simple15.hs @@ -19,7 +19,7 @@ data FOO = FOO type instance Def FOO = EQU () () foo :: FOO -foo = equ_refl <$ def +foo = equ_refl Simple15.<$ def -- This works: -- foo = def $ equ_refl |