2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2022-03-14 15:56:37 +01:00
|
|
|
|
2015-07-06 20:40:12 +03:00
|
|
|
fn invariant_id<'a,'b>(t: &'b mut &'static ()) -> &'b mut &'a ()
|
|
|
|
where 'a: 'static { t }
|
2022-03-14 15:56:37 +01:00
|
|
|
//~^ WARN unnecessary lifetime parameter `'a`
|
|
|
|
|
2015-07-06 20:40:12 +03:00
|
|
|
fn static_id<'a>(t: &'a ()) -> &'static ()
|
|
|
|
where 'a: 'static { t }
|
2022-03-14 15:56:37 +01:00
|
|
|
//~^ WARN unnecessary lifetime parameter `'a`
|
|
|
|
|
2015-07-06 20:40:12 +03:00
|
|
|
fn static_id_indirect<'a,'b>(t: &'a ()) -> &'static ()
|
|
|
|
where 'a: 'b, 'b: 'static { t }
|
2022-03-14 15:56:37 +01:00
|
|
|
//~^ WARN unnecessary lifetime parameter `'b`
|
|
|
|
|
2015-07-06 20:40:12 +03: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);
|
|
|
|
}
|