mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-29 15:48:52 +00:00
14 lines
167 B
Rust
14 lines
167 B
Rust
// Test for issue #145575.
|
|
|
|
//@ check-pass
|
|
//@ edition: 2018
|
|
|
|
extern crate core as std;
|
|
|
|
mod inner {
|
|
use crate::*;
|
|
use std::str; // OK for now
|
|
}
|
|
|
|
fn main() {}
|