diff options
author | FintanH | 2019-07-31 14:06:11 +0100 |
---|---|---|
committer | FintanH | 2019-07-31 14:06:11 +0100 |
commit | dceabb85e407b8e0e52105a725f3bb782fa474de (patch) | |
tree | 624682285e55f0768c7837197ae11784b09ca5d7 /dhall | |
parent | f806ad6bf0fad5a720c9b87310d86838612f3b7a (diff) |
Add unreachable call for RightBasedRecordMerge case
Diffstat (limited to '')
-rw-r--r-- | dhall/src/phase/typecheck.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dhall/src/phase/typecheck.rs b/dhall/src/phase/typecheck.rs index 9107e36..ecd0a69 100644 --- a/dhall/src/phase/typecheck.rs +++ b/dhall/src/phase/typecheck.rs @@ -663,6 +663,7 @@ fn type_last_layer( NaturalTimes => Natural, TextAppend => Text, ListAppend => unreachable!(), + RightBiasedRecordMerge => unreachable!(), _ => return Err(mkerr(Unimplemented)), })?; |