]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/impl-trait/issues/issue-86201.rs
New upstream version 1.59.0+dfsg1
[rustc.git] / src / test / ui / impl-trait / issues / issue-86201.rs
index 8cc4fef890abf8a40c3460ffa309e191203b15f3..e3386d29def02eabcb4840186426032754fc1bc0 100644 (file)
@@ -2,9 +2,9 @@
 #![feature(type_alias_impl_trait)]
 
 type FunType = impl Fn<()>;
-//~^ could not find defining uses
+//~^ ERROR could not find defining uses
 static STATIC_FN: FunType = some_fn;
-//~^ mismatched types
+//~^ ERROR mismatched types
 
 fn some_fn() {}