diff options
| author | Wesley Wiser <wwiser@gmail.com> | 2017-01-30 21:38:13 -0500 |
|---|---|---|
| committer | Wesley Wiser <wwiser@gmail.com> | 2017-01-31 21:27:13 -0500 |
| commit | 94687aaf58c9a935ed3efb84d0f3b60e00342dcc (patch) | |
| tree | a42706bc2694e3dc22245713b2947b33ab3f865a /src/libcoretest/hash | |
| parent | 8e9e0552767113ec24f6f8f207ade36a7bc5a091 (diff) | |
| download | rust-94687aaf58c9a935ed3efb84d0f3b60e00342dcc.tar.gz rust-94687aaf58c9a935ed3efb84d0f3b60e00342dcc.zip | |
Removes FIXMEs related to #22405
Diffstat (limited to 'src/libcoretest/hash')
| -rw-r--r-- | src/libcoretest/hash/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libcoretest/hash/mod.rs b/src/libcoretest/hash/mod.rs index 0d124338133..53ac17c052f 100644 --- a/src/libcoretest/hash/mod.rs +++ b/src/libcoretest/hash/mod.rs @@ -66,7 +66,6 @@ fn test_writer_hasher() { assert_eq!(hash(& s), 97 + 0xFF); let cs: &[u8] = &[1, 2, 3]; assert_eq!(hash(& cs), 9); - // FIXME (#22405): Replace `Box::new` with `box` here when/if possible. let cs: Box<[u8]> = Box::new([1, 2, 3]); assert_eq!(hash(& cs), 9); |
