2024-02-16 14:02:50 -06:00
|
|
|
//@ run-rustfix
|
2022-12-26 17:43:31 -06:00
|
|
|
|
|
|
|
#![allow(warnings)]
|
|
|
|
|
2023-09-07 20:35:51 -05:00
|
|
|
fn no_restriction<'a, T: 'a>(x: &'a ()) -> &'a () {
|
2022-12-26 17:43:31 -06:00
|
|
|
with_restriction::<T>(x) //~ ERROR E0311
|
|
|
|
}
|
|
|
|
|
|
|
|
fn with_restriction<'a, T: 'a>(x: &'a ()) -> &'a () {
|
|
|
|
x
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|