diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-05-29 22:51:26 +0000 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2020-06-03 17:02:31 -0400 |
commit | 792b82861a8abd03579a281dfdcbbb7081668997 (patch) | |
tree | 427aa9125eb08fd4cb57970d2ab51940d8551383 /html-test/src | |
parent | 60c85324ae083e2ac3d6180c0f20db5cdb31168b (diff) |
testsuite: Update expected output for simplified subsumption
Diffstat (limited to 'html-test/src')
-rw-r--r-- | html-test/src/FunArgs.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html-test/src/FunArgs.hs b/html-test/src/FunArgs.hs index 24e1ccff..e20bcda7 100644 --- a/html-test/src/FunArgs.hs +++ b/html-test/src/FunArgs.hs @@ -22,7 +22,7 @@ h :: forall a b c -> b -- ^ Second argument -> c -- ^ Third argument -> forall d. d -- ^ Result -h = undefined +h _ _ _ = undefined i :: forall a (b :: ()) d. (d ~ '()) |