fn no_restriction(x: &()) -> &() { with_restriction::(x) //~ ERROR E0311 } fn with_restriction<'a, T: 'a>(x: &'a ()) -> &'a () { x } fn main() {}