rust/src/test/ui/coercion/coerce-expect-unsized-ascribed.stderr

130 lines
5.0 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:9:13
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let _ = box { [1, 2, 3] }: Box<[i32]>;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^ expected slice, found array of 3 elements
|
= note: expected type `std::boxed::Box<[i32]>`
found type `std::boxed::Box<[i32; 3]>`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:10:13
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let _ = box if true { [1, 2, 3] } else { [1, 3, 4] }: Box<[i32]>;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected slice, found array of 3 elements
|
= note: expected type `std::boxed::Box<[i32]>`
found type `std::boxed::Box<[i32; 3]>`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:11:13
2018-08-08 07:28:26 -05:00
|
LL | let _ = box match true { true => [1, 2, 3], false => [1, 3, 4] }: Box<[i32]>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected slice, found array of 3 elements
|
= note: expected type `std::boxed::Box<[i32]>`
found type `std::boxed::Box<[i32; 3]>`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:13:13
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let _ = box { |x| (x as u8) }: Box<dyn Fn(i32) -> _>;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^ expected trait std::ops::Fn, found closure
|
= note: expected type `std::boxed::Box<dyn std::ops::Fn(i32) -> u8>`
2018-12-25 09:56:47 -06:00
found type `std::boxed::Box<[closure@$DIR/coerce-expect-unsized-ascribed.rs:13:19: 13:32]>`
2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:14:13
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let _ = box if true { false } else { true }: Box<dyn Debug>;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected trait std::fmt::Debug, found bool
|
= note: expected type `std::boxed::Box<dyn std::fmt::Debug>`
found type `std::boxed::Box<bool>`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:15:13
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let _ = box match true { true => 'a', false => 'b' }: Box<dyn Debug>;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected trait std::fmt::Debug, found char
|
= note: expected type `std::boxed::Box<dyn std::fmt::Debug>`
found type `std::boxed::Box<char>`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:17:13
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let _ = &{ [1, 2, 3] }: &[i32];
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^ expected slice, found array of 3 elements
|
= note: expected type `&[i32]`
found type `&[i32; 3]`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:18:13
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let _ = &if true { [1, 2, 3] } else { [1, 3, 4] }: &[i32];
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected slice, found array of 3 elements
|
= note: expected type `&[i32]`
found type `&[i32; 3]`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:19:13
2018-08-08 07:28:26 -05:00
|
LL | let _ = &match true { true => [1, 2, 3], false => [1, 3, 4] }: &[i32];
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected slice, found array of 3 elements
|
= note: expected type `&[i32]`
found type `&[i32; 3]`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:21:13
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let _ = &{ |x| (x as u8) }: &dyn Fn(i32) -> _;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^ expected trait std::ops::Fn, found closure
|
= note: expected type `&dyn std::ops::Fn(i32) -> u8`
2018-12-25 09:56:47 -06:00
found type `&[closure@$DIR/coerce-expect-unsized-ascribed.rs:21:16: 21:29]`
2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:22:13
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let _ = &if true { false } else { true }: &dyn Debug;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected trait std::fmt::Debug, found bool
|
= note: expected type `&dyn std::fmt::Debug`
found type `&bool`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:23:13
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let _ = &match true { true => 'a', false => 'b' }: &dyn Debug;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected trait std::fmt::Debug, found char
|
= note: expected type `&dyn std::fmt::Debug`
found type `&char`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:25:13
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let _ = Box::new([1, 2, 3]): Box<[i32]>;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^ expected slice, found array of 3 elements
|
= note: expected type `std::boxed::Box<[i32]>`
found type `std::boxed::Box<[i32; 3]>`
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/coerce-expect-unsized-ascribed.rs:26:13
2018-08-08 07:28:26 -05:00
|
2019-05-28 13:46:13 -05:00
LL | let _ = Box::new(|x| (x as u8)): Box<dyn Fn(i32) -> _>;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^ expected trait std::ops::Fn, found closure
|
= note: expected type `std::boxed::Box<dyn std::ops::Fn(i32) -> _>`
2018-12-25 09:56:47 -06:00
found type `std::boxed::Box<[closure@$DIR/coerce-expect-unsized-ascribed.rs:26:22: 26:35]>`
2018-08-08 07:28:26 -05:00
error: aborting due to 14 previous errors
For more information about this error, try `rustc --explain E0308`.