diff options
| author | Ralf Jung <post@ralfj.de> | 2022-06-30 10:17:49 -0400 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2022-07-13 18:31:29 -0400 |
| commit | eee0bf459dcdf8ff159e3c8d11600cb73f4519de (patch) | |
| tree | d1a56028e8ce545a55e248e898273d584c7c4ec8 | |
| parent | 5b7a2d50372000db6abd1c1de620c10c86df9b41 (diff) | |
| download | rust-eee0bf459dcdf8ff159e3c8d11600cb73f4519de.tar.gz rust-eee0bf459dcdf8ff159e3c8d11600cb73f4519de.zip | |
add array tests, cleanup, tidy, and bless
| -rw-r--r-- | tests/ui/derive.rs | 2 | ||||
| -rw-r--r-- | tests/ui/no_effect.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/derive.rs b/tests/ui/derive.rs index 4e46bf13991..b276c384c04 100644 --- a/tests/ui/derive.rs +++ b/tests/ui/derive.rs @@ -1,7 +1,7 @@ -#![feature(untagged_unions)] #![allow(dead_code)] #![warn(clippy::expl_impl_clone_on_copy)] + #[derive(Copy)] struct Qux; diff --git a/tests/ui/no_effect.rs b/tests/ui/no_effect.rs index 7ece66a1ccb..f0c59b4080b 100644 --- a/tests/ui/no_effect.rs +++ b/tests/ui/no_effect.rs @@ -4,7 +4,7 @@ #![allow(path_statements)] #![allow(clippy::deref_addrof)] #![allow(clippy::redundant_field_names)] -#![feature(untagged_unions)] + struct Unit; struct Tuple(i32); |
