]> git.proxmox.com Git - rustc.git/blame - src/test/ui/trivial_casts.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / trivial_casts.stderr
CommitLineData
b7449926 1error: trivial numeric cast: `i32` as `i32`
0731742a 2 --> $DIR/trivial_casts.rs:16:13
b7449926 3 |
532ac7d7 4LL | let _ = 42_i32 as i32;
b7449926
XL
5 | ^^^^^^^^^^^^^
6 |
74b04a01 7note: the lint level is defined here
0731742a 8 --> $DIR/trivial_casts.rs:4:24
b7449926
XL
9 |
10LL | #![deny(trivial_casts, trivial_numeric_casts)]
11 | ^^^^^^^^^^^^^^^^^^^^^
12 = help: cast can be replaced by coercion; this might require a temporary variable
13
14error: trivial numeric cast: `u8` as `u8`
0731742a 15 --> $DIR/trivial_casts.rs:19:13
b7449926 16 |
532ac7d7 17LL | let _ = 42_u8 as u8;
b7449926
XL
18 | ^^^^^^^^^^^
19 |
20 = help: cast can be replaced by coercion; this might require a temporary variable
21
22error: trivial cast: `&u32` as `*const u32`
0731742a 23 --> $DIR/trivial_casts.rs:24:13
b7449926 24 |
532ac7d7 25LL | let _ = x as *const u32;
b7449926
XL
26 | ^^^^^^^^^^^^^^^
27 |
74b04a01 28note: the lint level is defined here
0731742a 29 --> $DIR/trivial_casts.rs:4:9
b7449926
XL
30 |
31LL | #![deny(trivial_casts, trivial_numeric_casts)]
32 | ^^^^^^^^^^^^^
33 = help: cast can be replaced by coercion; this might require a temporary variable
34
35error: trivial cast: `&mut u32` as `*mut u32`
0731742a 36 --> $DIR/trivial_casts.rs:28:13
b7449926 37 |
532ac7d7 38LL | let _ = x as *mut u32;
b7449926
XL
39 | ^^^^^^^^^^^^^
40 |
41 = help: cast can be replaced by coercion; this might require a temporary variable
42
43error: trivial cast: `&[u32; 3]` as `&[u32]`
0731742a 44 --> $DIR/trivial_casts.rs:33:13
b7449926 45 |
532ac7d7 46LL | let _ = x as &[u32];
b7449926
XL
47 | ^^^^^^^^^^^
48 |
49 = help: cast can be replaced by coercion; this might require a temporary variable
50
51error: trivial cast: `&[u32; 3]` as `*const [u32]`
0731742a 52 --> $DIR/trivial_casts.rs:34:13
b7449926 53 |
532ac7d7 54LL | let _ = x as *const [u32];
b7449926
XL
55 | ^^^^^^^^^^^^^^^^^
56 |
57 = help: cast can be replaced by coercion; this might require a temporary variable
58
59error: trivial cast: `&mut [u32; 3]` as `&mut [u32]`
0731742a 60 --> $DIR/trivial_casts.rs:39:13
b7449926 61 |
532ac7d7 62LL | let _ = x as &mut [u32];
b7449926
XL
63 | ^^^^^^^^^^^^^^^
64 |
65 = help: cast can be replaced by coercion; this might require a temporary variable
66
67error: trivial cast: `&mut [u32; 3]` as `*mut [u32]`
0731742a 68 --> $DIR/trivial_casts.rs:40:13
b7449926 69 |
532ac7d7 70LL | let _ = x as *mut [u32];
b7449926
XL
71 | ^^^^^^^^^^^^^^^
72 |
73 = help: cast can be replaced by coercion; this might require a temporary variable
74
1b1a35ee 75error: trivial cast: `Box<[u32; 3]>` as `Box<[u32]>`
0731742a 76 --> $DIR/trivial_casts.rs:45:13
b7449926
XL
77 |
78LL | let _ = x as Box<[u32]>;
79 | ^^^^^^^^^^^^^^^
80 |
81 = help: cast can be replaced by coercion; this might require a temporary variable
82
83error: trivial cast: `&Bar` as `&dyn Foo`
0731742a 84 --> $DIR/trivial_casts.rs:52:13
b7449926 85 |
dc9dc135
XL
86LL | let _ = x as &dyn Foo;
87 | ^^^^^^^^^^^^^
b7449926
XL
88 |
89 = help: cast can be replaced by coercion; this might require a temporary variable
90
91error: trivial cast: `&Bar` as `*const dyn Foo`
0731742a 92 --> $DIR/trivial_casts.rs:53:13
b7449926 93 |
dc9dc135
XL
94LL | let _ = x as *const dyn Foo;
95 | ^^^^^^^^^^^^^^^^^^^
b7449926
XL
96 |
97 = help: cast can be replaced by coercion; this might require a temporary variable
98
99error: trivial cast: `&mut Bar` as `&mut dyn Foo`
0731742a 100 --> $DIR/trivial_casts.rs:58:13
b7449926 101 |
dc9dc135
XL
102LL | let _ = x as &mut dyn Foo;
103 | ^^^^^^^^^^^^^^^^^
b7449926
XL
104 |
105 = help: cast can be replaced by coercion; this might require a temporary variable
106
107error: trivial cast: `&mut Bar` as `*mut dyn Foo`
0731742a 108 --> $DIR/trivial_casts.rs:59:13
b7449926 109 |
dc9dc135
XL
110LL | let _ = x as *mut dyn Foo;
111 | ^^^^^^^^^^^^^^^^^
b7449926
XL
112 |
113 = help: cast can be replaced by coercion; this might require a temporary variable
114
1b1a35ee 115error: trivial cast: `Box<Bar>` as `Box<dyn Foo>`
0731742a 116 --> $DIR/trivial_casts.rs:64:13
b7449926 117 |
dc9dc135
XL
118LL | let _ = x as Box<dyn Foo>;
119 | ^^^^^^^^^^^^^^^^^
b7449926
XL
120 |
121 = help: cast can be replaced by coercion; this might require a temporary variable
122
1b1a35ee 123error: trivial cast: `&fn(i32) {baz}` as `&dyn Fn(i32)`
0731742a 124 --> $DIR/trivial_casts.rs:70:13
b7449926 125 |
dc9dc135
XL
126LL | let _ = &baz as &dyn Fn(i32);
127 | ^^^^^^^^^^^^^^^^^^^^
b7449926
XL
128 |
129 = help: cast can be replaced by coercion; this might require a temporary variable
130
1b1a35ee 131error: trivial cast: `&[closure@$DIR/trivial_casts.rs:72:13: 72:25]` as `&dyn Fn(i32)`
0731742a 132 --> $DIR/trivial_casts.rs:73:13
b7449926 133 |
dc9dc135
XL
134LL | let _ = &x as &dyn Fn(i32);
135 | ^^^^^^^^^^^^^^^^^^
b7449926
XL
136 |
137 = help: cast can be replaced by coercion; this might require a temporary variable
138
139error: trivial cast: `&'a Bar` as `&'a Bar`
0731742a 140 --> $DIR/trivial_casts.rs:79:13
b7449926 141 |
532ac7d7 142LL | let _ = a as &'a Bar;
b7449926
XL
143 | ^^^^^^^^^^^^
144 |
145 = help: cast can be replaced by coercion; this might require a temporary variable
146
147error: trivial cast: `&'b Bar` as `&'a Bar`
0731742a 148 --> $DIR/trivial_casts.rs:81:13
b7449926 149 |
532ac7d7 150LL | let _ = b as &'a Bar;
b7449926
XL
151 | ^^^^^^^^^^^^
152 |
153 = help: cast can be replaced by coercion; this might require a temporary variable
154
155error: trivial cast: `&'b Bar` as `&'b Bar`
0731742a 156 --> $DIR/trivial_casts.rs:83:13
b7449926 157 |
532ac7d7 158LL | let _ = b as &'b Bar;
b7449926
XL
159 | ^^^^^^^^^^^^
160 |
161 = help: cast can be replaced by coercion; this might require a temporary variable
162
163error: aborting due to 19 previous errors
164