2021-03-01 11:42:19 +00:00
|
|
|
error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'p` due to conflicting requirements
|
2020-05-31 15:15:33 +00:00
|
|
|
--> $DIR/static_ref.rs:4:1
|
2020-04-12 07:31:35 +00:00
|
|
|
|
|
2020-05-31 15:15:33 +00:00
|
|
|
4 | #[pyfunction]
|
|
|
|
| ^^^^^^^^^^^^^
|
2020-04-12 07:31:35 +00:00
|
|
|
|
|
2021-03-01 11:42:19 +00:00
|
|
|
note: first, the lifetime cannot outlive the anonymous lifetime #1 defined on the body at 4:1...
|
|
|
|
--> $DIR/static_ref.rs:4:1
|
|
|
|
|
|
|
|
|
4 | #[pyfunction]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
note: ...so that the types are compatible
|
|
|
|
--> $DIR/static_ref.rs:4:1
|
|
|
|
|
|
|
|
|
4 | #[pyfunction]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
= note: expected `pyo3::Python<'_>`
|
|
|
|
found `pyo3::Python<'_>`
|
|
|
|
= note: but, the lifetime must be valid for the static lifetime...
|
|
|
|
note: ...so that reference does not outlive borrowed content
|
|
|
|
--> $DIR/static_ref.rs:4:1
|
|
|
|
|
|
|
|
|
4 | #[pyfunction]
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
= note: this error originates in an attribute macro (in Nightly builds, run with -Z macro-backtrace for more info)
|