mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 11:32:29 +00:00
11 lines
293 B
Rust
11 lines
293 B
Rust
//
|
|
// 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() {}
|