]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/lint/not_found.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / lint / not_found.rs
index 979a67b15583a609e7748d73f36a401041f5c729..de120b6e084b8c71b94d8300ed3a7862e52c1c43 100644 (file)
@@ -1,13 +1,21 @@
-// build-pass (FIXME(62277): could be check-pass?)
+// check-pass
 
 // this tests the `unknown_lint` lint, especially the suggestions
 
 // the suggestion only appears if a lint with the lowercase name exists
 #[allow(FOO_BAR)]
+//~^ WARNING unknown lint
+
 // the suggestion appears on all-uppercase names
 #[warn(DEAD_CODE)]
+//~^ WARNING unknown lint
+//~| HELP did you mean
+
 // the suggestion appears also on mixed-case names
 #[deny(Warnings)]
+//~^ WARNING unknown lint
+//~| HELP did you mean
+
 fn main() {
     unimplemented!();
 }