2017-12-09 18:30:47 -06:00
|
|
|
// aux-build:xcrate.rs
|
2018-08-24 10:51:32 -05:00
|
|
|
// compile-flags:--extern xcrate
|
2018-06-25 22:04:08 -05:00
|
|
|
// edition:2018
|
2017-12-09 18:30:47 -06:00
|
|
|
|
2018-08-09 08:29:22 -05: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-09 18:30:47 -06:00
|
|
|
|
|
|
|
fn main() {
|
2019-08-03 18:07:35 -05:00
|
|
|
let s = ::xcrate; //~ ERROR expected value, found crate `xcrate`
|
2017-12-09 18:30:47 -06:00
|
|
|
//~^ NOTE not a value
|
|
|
|
}
|