summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-2126-extern-absolute-paths/single-segment.rs
blob: 72e50d78bc2527e9796f013673e1b6a64633391e (plain)
1
2
3
4
5
6
7
8
9
10
11
// aux-build:xcrate.rs
// compile-flags:--extern xcrate
// edition:2018

use crate; //~ ERROR crate root imports need to be explicitly named: `use crate as name;`
use *; //~ ERROR cannot glob-import all possible crates

fn main() {
    let s = ::xcrate; //~ ERROR expected value, found crate `xcrate`
                      //~^ NOTE not a value
}