Iterators does not precompile under 1.0

I think Iterators is part of the base distribution. Correct? Alas, here it tells me

julia> using Iterators
[ Info: Precompiling Iterators [a4bce56a-f44e-563f-a45f-5312daf41243]
ERROR: LoadError: syntax: extra token "TakeStrict" after end of expression
Stacktrace:
 [1] include at ./boot.jl:317 [inlined]
 [2] include_relative(::Module, ::String) at ./loading.jl:1038
 [3] include(::Module, ::String) at ./sysimg.jl:29
 [4] top-level scope at none:2
 [5] eval at ./boot.jl:319 [inlined]
 [6] eval(::Expr) at ./client.jl:389
 [7] top-level scope at ./none:3
in expression starting at /Users/ivo/.julia/packages/Iterators/hSc9y/src/Iterators.jl:60

Base.Iterators is in Base.

1 Like

thx, k. apparently, it needs Base. in ‘using’, or else

julia> using Iterators
ERROR: ArgumentError: Package Iterators not found in current path:
- Run `Pkg.add("Iterators")` to install the Iterators package.

and this one gives the error. is this the old package? or a different one? is this an unpleasant name conflict, or are users supposed to use both, or one in lieu of the other, or … ?