summaryrefslogtreecommitdiff
path: root/serde_dhall
diff options
context:
space:
mode:
authorNadrieril2020-03-31 20:10:49 +0100
committerNadrieril2020-03-31 20:10:49 +0100
commite12fb2928307d240461e749e5d371cef17cf520c (patch)
tree0b62e961c1de99ce9a78c4775ce8eab047cdf768 /serde_dhall
parent6d091c29cd160ffddf870929bfb3e601fa01031a (diff)
Fix indexing for spans that go to the end of the input
Diffstat (limited to 'serde_dhall')
-rw-r--r--serde_dhall/tests/de.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/serde_dhall/tests/de.rs b/serde_dhall/tests/de.rs
index 41a44bd..74912dd 100644
--- a/serde_dhall/tests/de.rs
+++ b/serde_dhall/tests/de.rs
@@ -82,4 +82,7 @@ fn test_de_untyped() {
parse::<BTreeMap<String, usize>>("{ x = 1, y = 2 }"),
expected_map
);
+
+ // https://github.com/Nadrieril/dhall-rust/issues/155
+ assert!(from_str::<bool>("List/length [True, 42]").is_err());
}