diff options
author | Richard Eisenberg <rae@richarde.dev> | 2021-01-04 11:07:00 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-01-09 21:19:45 -0500 |
commit | c8c63dde01686a96af4dabcced78110368efaec3 (patch) | |
tree | b8801ecd61c343c18cf05fee157886e37554b244 /testsuite/tests/dependent/should_compile | |
parent | f88fb8c7d803f9d3bf245fa4bd9c50f7a2bd3c5b (diff) | |
download | haskell-c8c63dde01686a96af4dabcced78110368efaec3.tar.gz |
Never Anyify during kind inference
See Note [Error on unconstrained meta-variables] in TcMType.
Close #17301
Close #17567
Close #17562
Close #15474
Diffstat (limited to 'testsuite/tests/dependent/should_compile')
-rw-r--r-- | testsuite/tests/dependent/should_compile/dynamic-paper.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/dependent/should_compile/dynamic-paper.hs b/testsuite/tests/dependent/should_compile/dynamic-paper.hs index 1188bf17d4..6fae39f5a1 100644 --- a/testsuite/tests/dependent/should_compile/dynamic-paper.hs +++ b/testsuite/tests/dependent/should_compile/dynamic-paper.hs @@ -128,7 +128,7 @@ gcast x = do Refl <- eqT (typeRep :: TypeRep a) return x data SameKind :: k -> k -> Type -type CheckAppResult = SameKind AppResult AppResultNoKind + -- not the most thorough check foo :: AppResult x -> AppResultNoKind x foo (App y z) = AppNoKind y z |