blob: 3bdede237ce2b6fc2a22b8baa73f9861e50140c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#[no_core];
use core;
use zed(name = "core");
use bar(name = "core", vers = "0.3");
import core::str;
import x = zed::str;
mod baz {
import bar::str;
import x = core::str;
}
fn main() { }
|