os-rust/tests/ui/issues/issue-27942.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.3 KiB
Text
Raw Permalink Normal View History

error[E0308]: mismatched types
--> $DIR/issue-27942.rs:5:25
|
2018-02-23 03:42:32 +03:00
LL | fn select(&self) -> BufferViewHandle<R>;
| ^^^^^^^^^^^^^^^^^^^ lifetime mismatch
|
= note: expected trait `Resources<'_>`
found trait `Resources<'a>`
note: the lifetime `'a` as defined here...
2018-12-25 08:56:47 -07:00
--> $DIR/issue-27942.rs:3:18
|
2018-02-23 03:42:32 +03:00
LL | pub trait Buffer<'a, R: Resources<'a>> {
| ^^
note: ...does not necessarily outlive the anonymous lifetime defined here
--> $DIR/issue-27942.rs:5:15
|
LL | fn select(&self) -> BufferViewHandle<R>;
| ^^^^^
error[E0308]: mismatched types
--> $DIR/issue-27942.rs:5:25
|
2018-02-23 03:42:32 +03:00
LL | fn select(&self) -> BufferViewHandle<R>;
| ^^^^^^^^^^^^^^^^^^^ lifetime mismatch
|
= note: expected trait `Resources<'_>`
found trait `Resources<'a>`
note: the anonymous lifetime defined here...
2021-02-22 23:39:06 +09:00
--> $DIR/issue-27942.rs:5:15
|
2018-02-23 03:42:32 +03:00
LL | fn select(&self) -> BufferViewHandle<R>;
2021-02-22 23:39:06 +09:00
| ^^^^^
note: ...does not necessarily outlive the lifetime `'a` as defined here
--> $DIR/issue-27942.rs:3:18
|
LL | pub trait Buffer<'a, R: Resources<'a>> {
| ^^
error: aborting due to 2 previous errors
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0308`.