summaryrefslogtreecommitdiffstats
path: root/tests/ui/underscore-lifetime/dyn-trait-underscore-in-struct.rs
blob: e1deab736cf56eb185e781a8294d4e65b1524dc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Check that the `'_` in `dyn Trait + '_` acts like ordinary elision,
// and not like an object lifetime default.
//
// cc #48468

use std::fmt::Debug;

struct Foo {
    x: Box<dyn Debug + '_>, //~ ERROR missing lifetime specifier
}

fn main() {}