summary refs log tree commit diff
path: root/src/test/ui/coercion/coerce-expect-unsized-ascribed.stderr
blob: be362c9a78b98855570b182728c4fe6d5e808bb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
error[E0308]: mismatched types
  --> $DIR/coerce-expect-unsized-ascribed.rs:9:13
   |
LL |     let _ = box { [1, 2, 3] }: 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
  --> $DIR/coerce-expect-unsized-ascribed.rs:10:13
   |
LL |     let _ = box if true { [1, 2, 3] } else { [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
  --> $DIR/coerce-expect-unsized-ascribed.rs:11:13
   |
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
  --> $DIR/coerce-expect-unsized-ascribed.rs:13:13
   |
LL |     let _ = box { |x| (x as u8) }: Box<Fn(i32) -> _>;
   |             ^^^^^^^^^^^^^^^^^^^^^ expected trait std::ops::Fn, found closure
   |
   = note: expected type `std::boxed::Box<dyn std::ops::Fn(i32) -> u8>`
              found type `std::boxed::Box<[closure@$DIR/coerce-expect-unsized-ascribed.rs:13:19: 13:32]>`

error[E0308]: mismatched types
  --> $DIR/coerce-expect-unsized-ascribed.rs:14:13
   |
LL |     let _ = box if true { false } else { true }: Box<Debug>;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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
  --> $DIR/coerce-expect-unsized-ascribed.rs:15:13
   |
LL |     let _ = box match true { true => 'a', false => 'b' }: Box<Debug>;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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
  --> $DIR/coerce-expect-unsized-ascribed.rs:17:13
   |
LL |     let _ = &{ [1, 2, 3] }: &[i32];
   |             ^^^^^^^^^^^^^^ expected slice, found array of 3 elements
   |
   = note: expected type `&[i32]`
              found type `&[i32; 3]`

error[E0308]: mismatched types
  --> $DIR/coerce-expect-unsized-ascribed.rs:18:13
   |
LL |     let _ = &if true { [1, 2, 3] } else { [1, 3, 4] }: &[i32];
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected slice, found array of 3 elements
   |
   = note: expected type `&[i32]`
              found type `&[i32; 3]`

error[E0308]: mismatched types
  --> $DIR/coerce-expect-unsized-ascribed.rs:19:13
   |
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
  --> $DIR/coerce-expect-unsized-ascribed.rs:21:13
   |
LL |     let _ = &{ |x| (x as u8) }: &Fn(i32) -> _;
   |             ^^^^^^^^^^^^^^^^^^ expected trait std::ops::Fn, found closure
   |
   = note: expected type `&dyn std::ops::Fn(i32) -> u8`
              found type `&[closure@$DIR/coerce-expect-unsized-ascribed.rs:21:16: 21:29]`

error[E0308]: mismatched types
  --> $DIR/coerce-expect-unsized-ascribed.rs:22:13
   |
LL |     let _ = &if true { false } else { true }: &Debug;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected trait std::fmt::Debug, found bool
   |
   = note: expected type `&dyn std::fmt::Debug`
              found type `&bool`

error[E0308]: mismatched types
  --> $DIR/coerce-expect-unsized-ascribed.rs:23:13
   |
LL |     let _ = &match true { true => 'a', false => 'b' }: &Debug;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected trait std::fmt::Debug, found char
   |
   = note: expected type `&dyn std::fmt::Debug`
              found type `&char`

error[E0308]: mismatched types
  --> $DIR/coerce-expect-unsized-ascribed.rs:25:13
   |
LL |     let _ = Box::new([1, 2, 3]): 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
  --> $DIR/coerce-expect-unsized-ascribed.rs:26:13
   |
LL |     let _ = Box::new(|x| (x as u8)): Box<Fn(i32) -> _>;
   |             ^^^^^^^^^^^^^^^^^^^^^^^ expected trait std::ops::Fn, found closure
   |
   = note: expected type `std::boxed::Box<dyn std::ops::Fn(i32) -> _>`
              found type `std::boxed::Box<[closure@$DIR/coerce-expect-unsized-ascribed.rs:26:22: 26:35]>`

error: aborting due to 14 previous errors

For more information about this error, try `rustc --explain E0308`.