]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0259.stderr
Revert "rustc: Fix (again) simd vectors by-val in ABI"
[rust.git] / src / test / ui / error-codes / E0259.stderr
1 error[E0259]: the name `alloc` is defined multiple times
2   --> $DIR/E0259.rs:16:1
3    |
4 LL | extern crate alloc;
5    | ------------------- previous import of the extern crate `alloc` here
6 LL | 
7 LL | extern crate libc as alloc;
8    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^
9    | |
10    | `alloc` reimported here
11    | You can use `as` to change the binding name of the import
12    |
13    = note: `alloc` must be defined only once in the type namespace of this module
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0259`.