diff options
| author | The Miri Cronjob Bot <miri@cron.bot> | 2025-08-27 05:00:43 +0000 |
|---|---|---|
| committer | The Miri Cronjob Bot <miri@cron.bot> | 2025-08-27 05:00:43 +0000 |
| commit | aa583798abbead86c01450106088efba8dc0d54e (patch) | |
| tree | d3bde15db472993fc1d801f93f3c86ab8f669971 /compiler/rustc_data_structures/src | |
| parent | a10bdf93b153211e5daf1b1c147b955e690e30ef (diff) | |
| parent | b8160e9f38329c5c17f642f3e7e8ac702375dad5 (diff) | |
| download | rust-aa583798abbead86c01450106088efba8dc0d54e.tar.gz rust-aa583798abbead86c01450106088efba8dc0d54e.zip | |
Merge ref '269d5b56bcfd' from rust-lang/rust
Pull recent changes from https://github.com/rust-lang/rust via Josh. Upstream ref: 269d5b56bcfdf2be82213e72ef9a2e4c592a8c6b Filtered ref: a221b1d3ebb78ec8a01dcb1fe6bb165378e2f5c9 This merge was created using https://github.com/rust-lang/josh-sync.
Diffstat (limited to 'compiler/rustc_data_structures/src')
| -rw-r--r-- | compiler/rustc_data_structures/src/frozen.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/frozen.rs b/compiler/rustc_data_structures/src/frozen.rs index 73190574667..4a60d17de2a 100644 --- a/compiler/rustc_data_structures/src/frozen.rs +++ b/compiler/rustc_data_structures/src/frozen.rs @@ -46,7 +46,7 @@ //! Frozen::freeze(new_bar)`). /// An owned immutable value. -#[derive(Debug)] +#[derive(Debug, Clone)] pub struct Frozen<T>(T); impl<T> Frozen<T> { |
