]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/resolve-conflict-item-vs-extern-crate.stderr
Revert "rustc: Fix (again) simd vectors by-val in ABI"
[rust.git] / src / test / ui / resolve / resolve-conflict-item-vs-extern-crate.stderr
1 error[E0260]: the name `std` is defined multiple times
2   --> $DIR/resolve-conflict-item-vs-extern-crate.rs:12:1
3    |
4 LL | mod std {}    //~ ERROR the name `std` is defined multiple times
5    | ^^^^^^^ `std` redefined here
6    |
7    = note: `std` must be defined only once in the type namespace of this module
8 help: You can use `as` to change the binding name of the import
9    |
10 LL |  as other_std// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
11    |  ^^^^^^^^^^^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0260`.