diff options
| author | bors <bors@rust-lang.org> | 2024-08-06 19:02:52 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-08-06 19:02:52 +0000 |
| commit | 3f5fd8dd41153bc5fdca9427e9e05be2c767ba23 (patch) | |
| tree | 01cdc48561c6f259221b76ee764f3e8fba492708 /tests/ui/lint/dead-code/lint-dead-code-1.rs | |
| parent | 051478957371ee0084a7c0913941d2a8c4757bb9 (diff) | |
| parent | 1cc8da5c1015f8ce0268f856a4de42cb9e77e218 (diff) | |
| download | rust-1.80.1.tar.gz rust-1.80.1.zip | |
Auto merge of #128635 - pietroalbini:pa-1.80.1, r=pietroalbini 1.80.1
Prepare Rust 1.80.1 point release The point release is scheduled to include: * https://github.com/rust-lang/rust/pull/128271 * https://github.com/rust-lang/rust/pull/128618
Diffstat (limited to 'tests/ui/lint/dead-code/lint-dead-code-1.rs')
| -rw-r--r-- | tests/ui/lint/dead-code/lint-dead-code-1.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/ui/lint/dead-code/lint-dead-code-1.rs b/tests/ui/lint/dead-code/lint-dead-code-1.rs index 3386dfa4747..ddcafedf7bc 100644 --- a/tests/ui/lint/dead-code/lint-dead-code-1.rs +++ b/tests/ui/lint/dead-code/lint-dead-code-1.rs @@ -46,10 +46,11 @@ struct SemiUsedStruct; impl SemiUsedStruct { fn la_la_la() {} } -struct StructUsedAsField; //~ ERROR struct `StructUsedAsField` is never constructed +struct StructUsedAsField; pub struct StructUsedInEnum; struct StructUsedInGeneric; -pub struct PubStruct2 { //~ ERROR struct `PubStruct2` is never constructed +pub struct PubStruct2 { + #[allow(dead_code)] struct_used_as_field: *const StructUsedAsField } |
