mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
Add a failing rustdoc-ui test for public infinite recursive type
This commit is contained in:
parent
74864fa496
commit
ca882c015d
@ -0,0 +1,9 @@
|
||||
// check-pass
|
||||
|
||||
pub fn f() -> impl Sized {
|
||||
pub enum E {
|
||||
V(E),
|
||||
}
|
||||
|
||||
unimplemented!()
|
||||
}
|
Loading…
Reference in New Issue
Block a user