summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-50716-1.rs
blob: 9c3e24de46effe45972b3cb64e7c3ca2e118e929 (plain)
1
2
3
4
5
6
7
8
9
10
//
// 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() {}