Skip to content
Snippets Groups Projects

Fix `Export` order for `length`. Remove `length` hack in strings.

Merged Robbert Krebbers requested to merge ci/robbert/length into master
Files
2
+ 35
6
From stdpp Require prelude strings list.
(** Check that we always get the [length] function on lists, not on strings. *)
From stdpp Require Import prelude.
Check length.
From stdpp Require Import strings.
Check length.
From stdpp Require Import prelude.
Check length.
\ No newline at end of file
Module test1.
Import stdpp.base.
Check length.
Import stdpp.strings.
Check length.
Import stdpp.base.
Check length.
End test1.
Module test2.
Import stdpp.prelude.
Check length.
Import stdpp.strings.
Check length.
Import stdpp.prelude.
Check length.
End test2.
Module test3.
Import stdpp.strings.
Check length.
Import stdpp.prelude.
Check length.
End test3.
Module test4.
Import stdpp.list.
Check length.
Import stdpp.strings.
Check length.
Import stdpp.list.
Check length.
End test4.
Loading