mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
13 lines
213 B
Rust
13 lines
213 B
Rust
// 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() {}
|