mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00:00
14 lines
214 B
Plaintext
14 lines
214 B
Plaintext
//@ run-rustfix
|
|
|
|
#![allow(warnings)]
|
|
|
|
fn no_restriction<'a, T: 'a>(x: &'a ()) -> &'a () {
|
|
with_restriction::<T>(x) //~ ERROR E0311
|
|
}
|
|
|
|
fn with_restriction<'a, T: 'a>(x: &'a ()) -> &'a () {
|
|
x
|
|
}
|
|
|
|
fn main() {}
|