rust/tests/ui/underscore-lifetime/dyn-trait-underscore-in-struct.rs
2023-01-11 09:32:08 +00:00

13 lines
248 B
Rust

// 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() {}