1
Fork 0

Adjust compiler tests for unused_tuple_struct_fields -> dead_code

This commit is contained in:
Jake Goulding 2023-12-27 17:11:58 -05:00
parent 5772818dc8
commit 53eca9fa87
166 changed files with 223 additions and 209 deletions

View file

@ -1,7 +1,7 @@
// run-pass
use std::ops::AddAssign;
struct Int(#[allow(unused_tuple_struct_fields)] i32);
struct Int(#[allow(dead_code)] i32);
impl AddAssign for Int {
fn add_assign(&mut self, _: Int) {