Add a failing rustdoc-ui test for public infinite recursive type
This commit is contained in:
parent
74864fa496
commit
ca882c015d
4 changed files with 9 additions and 0 deletions
|
@ -0,0 +1,9 @@
|
||||||
|
// check-pass
|
||||||
|
|
||||||
|
pub fn f() -> impl Sized {
|
||||||
|
pub enum E {
|
||||||
|
V(E),
|
||||||
|
}
|
||||||
|
|
||||||
|
unimplemented!()
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue