Source: ``` rust pub fn test<'a, A: 'a>(x: &'a A) { let _ = x; } ``` Becomes this in rustdoc: ``` pub fn test<'a, A: 'static>(x: &'a A) ```