We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57957a6 commit ec51804Copy full SHA for ec51804
src/test/incremental/change_crate_order/main.rs
@@ -20,5 +20,5 @@ use b::B;
20
21
//? #[rustc_clean(label="typeck_tables_of", cfg="rpass2")]
22
pub fn main() {
23
- A + B;
+ let _ = A + B;
24
}
src/test/incremental/warnings-reemitted.rs
@@ -6,5 +6,5 @@
6
#![warn(const_err)]
7
8
fn main() {
9
- 255u8 + 1; //~ WARNING this expression will panic at run-time
+ let _ = 255u8 + 1; //~ WARNING this expression will panic at run-time
10
0 commit comments