]> git.lizzy.rs Git - rust.git/blob - src/test/ui/extern/extern-crate-visibility.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / extern / extern-crate-visibility.stderr
1 error[E0603]: extern crate `core` is private
2   --> $DIR/extern-crate-visibility.rs:16:5
3    |
4 LL | use foo::core::cell; //~ ERROR extern crate `core` is private
5    |     ^^^^^^^^^^^^^^^
6
7 error[E0603]: extern crate `core` is private
8   --> $DIR/extern-crate-visibility.rs:19:5
9    |
10 LL |     foo::core::cell::Cell::new(0); //~ ERROR extern crate `core` is private
11    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0603`.