2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:xcrate.rs
|
|
|
|
|
//@ compile-flags:--extern xcrate
|
|
|
|
|
//@ edition:2018
|
2017-12-10 03:30:47 +03:00
|
|
|
|
2018-08-09 16:29:22 +03:00
|
|
|
use crate; //~ ERROR crate root imports need to be explicitly named: `use crate as name;`
|
|
|
|
|
use *; //~ ERROR cannot glob-import all possible crates
|
2017-12-10 03:30:47 +03:00
|
|
|
|
|
|
|
|
fn main() {
|
2019-08-04 02:07:35 +03:00
|
|
|
let s = ::xcrate; //~ ERROR expected value, found crate `xcrate`
|
2017-12-10 03:30:47 +03:00
|
|
|
//~^ NOTE not a value
|
|
|
|
|
}
|