rust/src/test/ui/rfc-2126-crate-paths/crate-path-non-absolute.rs

23 lines
652 B
Rust
Raw Normal View History

2017-11-04 15:56:45 -05:00
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2016-04-24 13:35:50 -05:00
// 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.
2017-11-04 15:56:45 -05:00
#![feature(crate_in_paths)]
2016-04-24 13:35:50 -05:00
2017-11-04 15:56:45 -05:00
struct S;
2016-04-24 13:35:50 -05:00
2018-04-20 19:04:29 -05:00
pub mod m {
2017-11-04 15:56:45 -05:00
fn f() {
2018-04-20 19:04:29 -05:00
let s = ::m::crate::S; //~ ERROR failed to resolve
let s2 = crate::S; // no error
2017-11-04 15:56:45 -05:00
}
2016-04-24 13:35:50 -05:00
}
2017-11-04 15:56:45 -05:00
fn main() {}