blob: 9c3e24de46effe45972b3cb64e7c3ca2e118e929 [file] [log] [blame]
//
// 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() {}