about summary refs log tree commit diff
path: root/tests/ui/nll/issue-50716-1.rs
blob: b8ef3ab1475b14e7dc7003f3289597b190b9b2f3 (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() {}