]> git.lizzy.rs Git - rust.git/blobdiff - src/liballoc/tests/lib.rs
Rollup merge of #52769 - sinkuu:stray_test, r=alexcrichton
[rust.git] / src / liballoc / tests / lib.rs
index d3cbad0284b464068decd8599b5c5df437347a2a..618aff963f22dd59bc8d549bd4fc585ecd4d8847 100644 (file)
@@ -64,7 +64,7 @@ fn test_boxed_hasher() {
     5u32.hash(&mut hasher_1);
     assert_eq!(ordinary_hash, hasher_1.finish());
 
-    let mut hasher_2 = Box::new(DefaultHasher::new()) as Box<Hasher>;
+    let mut hasher_2 = Box::new(DefaultHasher::new()) as Box<dyn Hasher>;
     5u32.hash(&mut hasher_2);
     assert_eq!(ordinary_hash, hasher_2.finish());
 }