Skip to content

Commit 7e50336

Browse files
Rollup merge of rust-lang#110488 - GuillaumeGomez:test-infinite-recursive-type, r=jyn514
Add a failing rustdoc-ui test for public infinite recursive type As suggested in rust-lang#110450 (comment). r? `@jyn514`
2 parents aa1247a + ca882c0 commit 7e50336

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)