2023-01-27 05:10:05 -06:00
|
|
|
// This is a regression test for <https://github.com/rust-lang/rust/issues/107350>.
|
|
|
|
// It shouldn't loop indefinitely.
|
|
|
|
|
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has 'foo/oops/enum.OhNo.html'
|
2023-01-27 05:10:05 -06:00
|
|
|
|
|
|
|
pub mod oops {
|
|
|
|
pub use crate::oops::OhNo;
|
|
|
|
|
|
|
|
mod inner {
|
|
|
|
pub enum OhNo {
|
|
|
|
Item = 1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub use self::inner::*;
|
|
|
|
}
|