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

22 lines
629 B
Rust
Raw Normal View History

2017-11-04 20:56:45 +00:00
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2016-04-24 18:35:50 +00: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 20:56:45 +00:00
#![feature(crate_in_paths)]
2016-04-24 18:35:50 +00:00
2017-11-04 20:56:45 +00:00
struct S;
2016-04-24 18:35:50 +00:00
2017-11-04 20:56:45 +00:00
mod m {
fn f() {
let s = crate::S; //~ ERROR `crate` can only be used in absolute paths
2017-11-04 20:56:45 +00:00
}
2016-04-24 18:35:50 +00:00
}
2017-11-04 20:56:45 +00:00
fn main() {}