mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
26 lines
326 B
Rust
26 lines
326 B
Rust
//@ check-pass
|
|
// https://github.com/rust-lang/rust/issues/56593#issuecomment-1133174514
|
|
|
|
use thing::*;
|
|
|
|
#[derive(Debug)]
|
|
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() { }
|