mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 06:43:20 +03:00
23d5231607
This allows for testing these tests on editions other than 2015
8 lines
103 B
Rust
8 lines
103 B
Rust
use y::x;
|
|
|
|
mod y {
|
|
pub use crate::y::x; //~ ERROR unresolved import `crate::y::x`
|
|
}
|
|
|
|
fn main() { }
|