diff options
author | Nadrieril | 2020-11-28 02:20:38 +0000 |
---|---|---|
committer | GitHub | 2020-11-28 02:20:38 +0000 |
commit | 52eb91195981ccca0232ce6f0cf0a5c82224e3f4 (patch) | |
tree | 87d73a718e2d39353b512d00879a9d6df3ceeef4 /dhall/tests | |
parent | 8be3891b1e30f61b1f38b96e1ed200f367066032 (diff) | |
parent | c231c18917a69e87ac4339627620b323d7d9552b (diff) |
Merge pull request #202 from basile-henry/if-type
If can return a type
Diffstat (limited to 'dhall/tests')
-rw-r--r-- | dhall/tests/type-inference/failure/unit/IfBranchesNotTermTypeOrKind.txt | 4 | ||||
-rw-r--r-- | dhall/tests/type-inference/failure/unit/IfBranchesNotType.txt | 6 |
2 files changed, 2 insertions, 8 deletions
diff --git a/dhall/tests/type-inference/failure/unit/IfBranchesNotTermTypeOrKind.txt b/dhall/tests/type-inference/failure/unit/IfBranchesNotTermTypeOrKind.txt index 8b46d1f..4023128 100644 --- a/dhall/tests/type-inference/failure/unit/IfBranchesNotTermTypeOrKind.txt +++ b/dhall/tests/type-inference/failure/unit/IfBranchesNotTermTypeOrKind.txt @@ -1,6 +1,6 @@ -Type error: error: IfBranchMustBeTerm +Type error: error: IfBranchMustBeTermTypeOrKind --> <current file>:1:1 | 1 | if True then Kind else Kind - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ IfBranchMustBeTerm + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ IfBranchMustBeTermTypeOrKind | diff --git a/dhall/tests/type-inference/failure/unit/IfBranchesNotType.txt b/dhall/tests/type-inference/failure/unit/IfBranchesNotType.txt deleted file mode 100644 index 4c9ec28..0000000 --- a/dhall/tests/type-inference/failure/unit/IfBranchesNotType.txt +++ /dev/null @@ -1,6 +0,0 @@ -Type error: error: IfBranchMustBeTerm - --> <current file>:1:1 - | -1 | if True then Type else Type - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ IfBranchMustBeTerm - | |