diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2022-03-10 14:28:28 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2022-03-10 14:36:51 +0000 |
| commit | 5f7ca55df6a89e3caa3131a13490cc01956149e7 (patch) | |
| tree | cc1b477b11cbe67e7d8995c864e8c2dfdd620cc9 /library/alloc/tests | |
| parent | 282778aee26166754315815552bae454fc968960 (diff) | |
| download | rust-5f7ca55df6a89e3caa3131a13490cc01956149e7.tar.gz rust-5f7ca55df6a89e3caa3131a13490cc01956149e7.zip | |
Revert accidental stabilization
Diffstat (limited to 'library/alloc/tests')
| -rw-r--r-- | library/alloc/tests/boxed.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/tests/boxed.rs b/library/alloc/tests/boxed.rs index 0d7acfed8c6..9e5123be989 100644 --- a/library/alloc/tests/boxed.rs +++ b/library/alloc/tests/boxed.rs @@ -160,7 +160,7 @@ fn const_box() { *boxed = 42; assert!(*boxed == 42); - *boxed + *Box::leak(boxed) }; assert!(VALUE == 42); |
