2017-12-09 18:30:47 -06:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// aux-build:xcrate.rs
|
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() {
|
|
|
|
let s = ::xcrate; //~ ERROR expected value, found module `xcrate`
|
|
|
|
//~^ NOTE not a value
|
|
|
|
}
|