summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-ui/infinite-recursive-type-impl-trait.rs
blob: ac51725749867cea7f7b979839320140378480d3 (plain)
1
2
3
4
5
6
fn f() -> impl Sized {
    enum E { //~ ERROR
        V(E),
    }
    unimplemented!()
}