mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
25 lines
282 B
Rust
25 lines
282 B
Rust
// check-pass
|
|
// similar with `import-after-macro-expand-2.rs`
|
|
|
|
use thing::*;
|
|
|
|
pub enum Thing {
|
|
Foo
|
|
}
|
|
|
|
mod tests {
|
|
use super::*;
|
|
|
|
fn test_thing() {
|
|
let thing: crate::Thing = Thing::Foo;
|
|
}
|
|
}
|
|
|
|
mod thing {
|
|
pub enum Thing {
|
|
Bar
|
|
}
|
|
}
|
|
|
|
fn main() {}
|