mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
27 lines
712 B
Plaintext
27 lines
712 B
Plaintext
error: [*, o]
|
|
--> $DIR/variance.rs:14:36
|
|
|
|
|
LL | fn not_captured_early<'a: 'a>() -> impl Sized {}
|
|
| ^^^^^^^^^^
|
|
|
|
error: [*, o]
|
|
--> $DIR/variance.rs:19:32
|
|
|
|
|
LL | fn captured_early<'a: 'a>() -> impl Sized + Captures<'a> {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: [o]
|
|
--> $DIR/variance.rs:21:40
|
|
|
|
|
LL | fn not_captured_late<'a>(_: &'a ()) -> impl Sized {}
|
|
| ^^^^^^^^^^
|
|
|
|
error: [o]
|
|
--> $DIR/variance.rs:26:36
|
|
|
|
|
LL | fn captured_late<'a>(_: &'a ()) -> impl Sized + Captures<'a> {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|