1
Fork 0
rust/tests/ui/impl-trait/variance.old.stderr

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

27 lines
708 B
Text
Raw Normal View History

2023-08-08 19:59:44 +00:00
error: [*]
2023-10-19 19:00:18 +00:00
--> $DIR/variance.rs:12:36
2023-08-08 19:59:44 +00:00
|
LL | fn not_captured_early<'a: 'a>() -> impl Sized {}
| ^^^^^^^^^^
error: [*, o]
2023-10-19 19:00:18 +00:00
--> $DIR/variance.rs:16:32
2023-08-08 19:59:44 +00:00
|
LL | fn captured_early<'a: 'a>() -> impl Sized + Captures<'a> {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: []
2023-10-19 19:00:18 +00:00
--> $DIR/variance.rs:18:40
2023-08-08 19:59:44 +00:00
|
LL | fn not_captured_late<'a>(_: &'a ()) -> impl Sized {}
| ^^^^^^^^^^
error: [o]
2023-10-19 19:00:18 +00:00
--> $DIR/variance.rs:22:36
2023-08-08 19:59:44 +00:00
|
LL | fn captured_late<'a>(_: &'a ()) -> impl Sized + Captures<'a> {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 4 previous errors