2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2022-03-14 09:56:37 -05:00
|
|
|
|
2023-02-21 19:41:48 -06:00
|
|
|
#![warn(unused_lifetimes)]
|
|
|
|
|
2015-07-06 12:40:12 -05:00
|
|
|
fn invariant_id<'a,'b>(t: &'b mut &'static ()) -> &'b mut &'a ()
|
|
|
|
where 'a: 'static { t }
|
2022-03-14 09:56:37 -05:00
|
|
|
//~^ WARN unnecessary lifetime parameter `'a`
|
|
|
|
|
2015-07-06 12:40:12 -05:00
|
|
|
fn static_id<'a>(t: &'a ()) -> &'static ()
|
|
|
|
where 'a: 'static { t }
|
2022-03-14 09:56:37 -05:00
|
|
|
//~^ WARN unnecessary lifetime parameter `'a`
|
|
|
|
|
2015-07-06 12:40:12 -05:00
|
|
|
fn static_id_indirect<'a,'b>(t: &'a ()) -> &'static ()
|
|
|
|
where 'a: 'b, 'b: 'static { t }
|
2022-03-14 09:56:37 -05:00
|
|
|
//~^ WARN unnecessary lifetime parameter `'b`
|
|
|
|
|
2015-07-06 12:40:12 -05:00
|
|
|
fn ref_id<'a>(t: &'a ()) -> &'a () where 'static: 'a { t }
|
|
|
|
|
|
|
|
static UNIT: () = ();
|
|
|
|
|
|
|
|
fn main()
|
|
|
|
{
|
|
|
|
let mut val : &'static () = &UNIT;
|
|
|
|
invariant_id(&mut val);
|
|
|
|
static_id(val);
|
|
|
|
static_id_indirect(val);
|
|
|
|
ref_id(val);
|
|
|
|
}
|