Skip to content

Commit ca882c0

Browse files
Add a failing rustdoc-ui test for public infinite recursive type
1 parent 74864fa commit ca882c0

4 files changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// check-pass
2+
3+
pub fn f() -> impl Sized {
4+
pub enum E {
5+
V(E),
6+
}
7+
8+
unimplemented!()
9+
}

0 commit comments

Comments
 (0)