error: lifetime may not live long enough --> $DIR/normalization-2.rs:43:12 | LL | fn test_local<'a>() { | -- lifetime `'a` defined here LL | let _: Ty<'a> = MyTy::Unit; | ^^^^^^ requires that `'a` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:48:6 | LL | fn test_closure_sig<'a, 'b>() { | -- lifetime `'a` defined here LL | |_: Ty<'a>| {}; | ^ requires that `'a` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:50:11 | LL | fn test_closure_sig<'a, 'b>() { | -- lifetime `'b` defined here ... LL | || -> Option> { None }; | ^^^^^^^^^^^^^^ requires that `'b` must outlive `'static` help: the following changes may resolve your lifetime errors | = help: replace `'a` with `'static` = help: replace `'b` with `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:55:5 | LL | fn test_path<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h>() { | -- lifetime `'a` defined here LL | >::method::>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'a` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:57:5 | LL | fn test_path<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h>() { | -- lifetime `'b` defined here ... LL | >::method::>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:60:5 | LL | fn test_path<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h>() { | -- lifetime `'c` defined here ... LL | >::trait_method::>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'c` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:62:5 | LL | fn test_path<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h>() { | -- lifetime `'d` defined here ... LL | >::trait_method::>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'d` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:65:5 | LL | fn test_path<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h>() { | -- lifetime `'e` defined here ... LL | >::CONST; | ^^^^^^^^^^^^^^^ requires that `'e` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:67:5 | LL | fn test_path<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h>() { | -- lifetime `'f` defined here ... LL | >::TRAIT_CONST; | ^^^^^^^^^^^^^^^^^^^^^ requires that `'f` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:75:5 | LL | fn test_path<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h>() { | -- lifetime `'g` defined here ... LL | MyTy::Unit::>; | ^^^^^^^^^^^^^^^^^^^^ requires that `'g` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:77:5 | LL | fn test_path<'a, 'b, 'c, 'd, 'e, 'f, 'g, 'h>() { | -- lifetime `'h` defined here ... LL | MyTy::>::Unit; | ^^^^^^^^^^^^^^^^^^^^ requires that `'h` must outlive `'static` help: the following changes may resolve your lifetime errors | = help: replace `'a` with `'static` = help: replace `'b` with `'static` = help: replace `'c` with `'static` = help: replace `'d` with `'static` = help: replace `'e` with `'static` = help: replace `'f` with `'static` = help: replace `'g` with `'static` = help: replace `'h` with `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:82:5 | LL | fn test_call<'a, 'b, 'c>() { | -- lifetime `'a` defined here LL | >::method::>(); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'a` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:84:5 | LL | fn test_call<'a, 'b, 'c>() { | -- lifetime `'b` defined here ... LL | >::method::>(); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'static` help: the following changes may resolve your lifetime errors | = help: replace `'a` with `'static` = help: replace `'b` with `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:89:5 | LL | fn test_variants<'a, 'b, 'c>() { | -- lifetime `'a` defined here LL | >::Struct {}; | ^^^^^^^^^^^^^^^^^^^ requires that `'a` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:91:5 | LL | fn test_variants<'a, 'b, 'c>() { | -- lifetime `'b` defined here ... LL | >::Tuple(); | ^^^^^^^^^^^^^^^ requires that `'b` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:93:5 | LL | fn test_variants<'a, 'b, 'c>() { | -- lifetime `'c` defined here ... LL | >::Unit; | ^^^^^^^^^^^^^^ requires that `'c` must outlive `'static` help: the following changes may resolve your lifetime errors | = help: replace `'a` with `'static` = help: replace `'b` with `'static` = help: replace `'c` with `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:98:7 | LL | fn test_method_call<'a, 'b>(x: MyTy<()>) { | -- lifetime `'a` defined here LL | x.method2::>(); | ^^^^^^^ requires that `'a` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:100:7 | LL | fn test_method_call<'a, 'b>(x: MyTy<()>) { | -- lifetime `'b` defined here ... LL | x.trait_method::>(); | ^^^^^^^^^^^^ requires that `'b` must outlive `'static` help: the following changes may resolve your lifetime errors | = help: replace `'a` with `'static` = help: replace `'b` with `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:117:5 | LL | fn test_struct_path<'a, 'b, 'c, 'd>() { | -- lifetime `'a` defined here ... LL | MyTy::>::Struct {}; // without SelfTy | ^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'a` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:119:5 | LL | fn test_struct_path<'a, 'b, 'c, 'd>() { | -- lifetime `'b` defined here ... LL | as Project>::Enum::Struct {}; // with SelfTy | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:123:5 | LL | fn test_struct_path<'a, 'b, 'c, 'd>() { | -- lifetime `'c` defined here ... LL | Struct::> { x: None, }; // without SelfTy | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'c` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:125:5 | LL | fn test_struct_path<'a, 'b, 'c, 'd>() { | -- lifetime `'d` defined here ... LL | as Project>::Struct { x: None, }; // with SelfTy | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'d` must outlive `'static` help: the following changes may resolve your lifetime errors | = help: replace `'a` with `'static` = help: replace `'b` with `'static` = help: replace `'c` with `'static` = help: replace `'d` with `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:132:9 | LL | fn test_pattern<'a, 'b, 'c, 'd, 'e, 'f>() { | -- lifetime `'a` defined here ... LL | Struct::> {..} => {}, | ^^^^^^^^^^^^^^^^^^^^^ requires that `'a` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:134:9 | LL | fn test_pattern<'a, 'b, 'c, 'd, 'e, 'f>() { | -- lifetime `'b` defined here ... LL | Tuple::> (..) => {}, | ^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:136:9 | LL | fn test_pattern<'a, 'b, 'c, 'd, 'e, 'f>() { | -- lifetime `'c` defined here ... LL | Unit::> => {}, | ^^^^^^^^^^^^^^ requires that `'c` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:141:9 | LL | fn test_pattern<'a, 'b, 'c, 'd, 'e, 'f>() { | -- lifetime `'d` defined here ... LL | >::Struct {..} => {}, | ^^^^^^^^^^^^^^^^^^^^^ requires that `'d` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:143:9 | LL | fn test_pattern<'a, 'b, 'c, 'd, 'e, 'f>() { | -- lifetime `'e` defined here ... LL | >::Tuple (..) => {}, | ^^^^^^^^^^^^^^^^^^^^ requires that `'e` must outlive `'static` error: lifetime may not live long enough --> $DIR/normalization-2.rs:145:9 | LL | fn test_pattern<'a, 'b, 'c, 'd, 'e, 'f>() { | -- lifetime `'f` defined here ... LL | >::Unit => {}, | ^^^^^^^^^^^^^^ requires that `'f` must outlive `'static` help: the following changes may resolve your lifetime errors | = help: replace `'a` with `'static` = help: replace `'b` with `'static` = help: replace `'c` with `'static` = help: replace `'d` with `'static` = help: replace `'e` with `'static` = help: replace `'f` with `'static` error: aborting due to 28 previous errors