blob: deb08ff862cc2e9e8a574a2195ac45b92e8dd579 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/regions-infer-invariance-due-to-mutability-4.rs:10:5
|
LL | b_isize
| ^^^^^^^ lifetime mismatch
|
= note: expected struct `Invariant<'static>`
found struct `Invariant<'r>`
note: the lifetime `'r` as defined on the function body at 9:23...
--> $DIR/regions-infer-invariance-due-to-mutability-4.rs:9:23
|
LL | fn to_longer_lifetime<'r>(b_isize: Invariant<'r>) -> Invariant<'static> {
| ^^
= note: ...does not necessarily outlive the static lifetime
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.