blob: c691d2948229cb33e375951c9376bddb9c33d476 [file] [log] [blame]
// Copyright 2018 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:baz.rs
// compile-flags:--extern baz
// edition:2015
// This test exists to demonstrate the behaviour of the import suggestions
// from the `local-path-suggestions-2018.rs` test when not using the 2018 edition.
extern crate baz as aux_baz;
mod foo {
pub type Bar = u32;
}
mod baz {
use foo::Bar;
fn baz() {
let x: Bar = 22;
}
}
use foo::Bar;
use foobar::Baz;
fn main() { }