We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea92c68 commit e9abee7Copy full SHA for e9abee7
tests/rustdoc/issue-107350.rs
@@ -0,0 +1,18 @@
1
+// This is a regression test for <https://github.com/rust-lang/rust/issues/107350>.
2
+// It shouldn't loop indefinitely.
3
+
4
+#![crate_name = "foo"]
5
6
+// @has 'foo/oops/enum.OhNo.html'
7
8
+pub mod oops {
9
+ pub use crate::oops::OhNo;
10
11
+ mod inner {
12
+ pub enum OhNo {
13
+ Item = 1,
14
+ }
15
16
17
+ pub use self::inner::*;
18
+}
0 commit comments