]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/traits/multidispatch-convert-ambig-dest.rs
Rollup merge of #89876 - AlexApps99:const_ops, r=oli-obk
[rust.git] / src / test / ui / traits / multidispatch-convert-ambig-dest.rs
index 58cb69a05b7048295d2832c849ac5658b8f07f22..aa74e11c36256d847e0393c64aa4f4ecf274e06d 100644 (file)
@@ -24,7 +24,8 @@ fn test<T,U>(_: T, _: U)
 
 fn a() {
     test(22, std::default::Default::default());
-    //~^ ERROR type annotations needed [E0282]
+    //~^ ERROR type annotations needed
+    //~| ERROR type annotations needed
 }
 
 fn main() {}