summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-ui/issue-79467.rs
blob: eb0b9b380714e26d1e6750bb668f509e4138469f (plain)
1
2
3
4
5
6
7
8
fn g()
where
    'static: 'static,
    dyn 'static: 'static + Copy, //~ ERROR at least one trait is required for an object type
{
}

fn main() {}