2017-12-10 03:30:47 +03:00
|
|
|
// aux-build:xcrate.rs
|
2018-08-24 18:51:32 +03:00
|
|
|
// compile-flags:--extern xcrate
|
2018-06-25 22:04:08 -05:00
|
|
|
// 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
|
|
|
|
}
|