blob: b8ef3ab1475b14e7dc7003f3289597b190b9b2f3 [file] [log] [blame] [edit]
//
// An additional regression test for the issue #50716 “NLL ignores lifetimes
// bounds derived from `Sized` requirements” that checks that the fixed compiler
// accepts this code fragment with both AST and MIR borrow checkers.
//
//@ check-pass
struct Qey<Q: ?Sized>(Q);
fn main() {}