Skip to content

Commit

Permalink
Add a failing rustdoc-ui test for public infinite recursive type
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeGomez committed Apr 18, 2023
1 parent 74864fa commit ca882c0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// check-pass

pub fn f() -> impl Sized {
pub enum E {
V(E),
}

unimplemented!()
}

0 comments on commit ca882c0

Please sign in to comment.