summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/placeholder-implied-bounds.rs
blob: 33d3487030e4d3480f66f54ab34409709efe19fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// check-pass

pub fn main() {}

pub trait Iced {
    fn get(&self) -> &impl Sized;
}

/// Impl causes ICE
impl Iced for () {
    fn get(&self) -> &impl Sized {
        &()
    }
}