rust/tests/ui/impl-trait/variance.new.stderr

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

27 lines
712 B
Plaintext
Raw Normal View History

2023-10-19 19:00:18 +00:00
error: [*, o]
--> $DIR/variance.rs:14:36
2023-08-08 19:59:44 +00:00
|
LL | fn not_captured_early<'a: 'a>() -> impl Sized {}
| ^^^^^^^^^^
error: [*, o]
--> $DIR/variance.rs:19:32
2023-08-08 19:59:44 +00:00
|
LL | fn captured_early<'a: 'a>() -> impl Sized + Captures<'a> {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^
2023-10-19 19:00:18 +00:00
error: [o]
--> $DIR/variance.rs:21:40
2023-08-08 19:59:44 +00:00
|
LL | fn not_captured_late<'a>(_: &'a ()) -> impl Sized {}
| ^^^^^^^^^^
error: [o]
--> $DIR/variance.rs:26: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