summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/issue-88206.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/macros/issue-88206.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/macros/issue-88206.rs')
-rw-r--r--src/test/ui/macros/issue-88206.rs66
1 files changed, 0 insertions, 66 deletions
diff --git a/src/test/ui/macros/issue-88206.rs b/src/test/ui/macros/issue-88206.rs
deleted file mode 100644
index 14e2f6606..000000000
--- a/src/test/ui/macros/issue-88206.rs
+++ /dev/null
@@ -1,66 +0,0 @@
-// compile-flags: -Z deduplicate-diagnostics=yes
-
-#![warn(unused_imports)]
-
-use std::str::*;
-//~^ NOTE `from_utf8` is imported here, but it is a function
-//~| NOTE `from_utf8_mut` is imported here, but it is a function
-//~| NOTE `from_utf8_unchecked` is imported here, but it is a function
-
-mod hey {
- pub trait Serialize {}
- pub trait Deserialize {}
-
- pub struct X(i32);
-}
-
-use hey::{Serialize, Deserialize, X};
-//~^ NOTE `Serialize` is imported here, but it is only a trait, without a derive macro
-//~| NOTE `Deserialize` is imported here, but it is a trait
-//~| NOTE `X` is imported here, but it is a struct
-
-#[derive(Serialize)]
-//~^ ERROR cannot find derive macro `Serialize`
-struct A;
-
-#[derive(from_utf8_mut)]
-//~^ ERROR cannot find derive macro `from_utf8_mut`
-struct B;
-
-#[derive(println)]
-//~^ ERROR cannot find derive macro `println`
-//~| NOTE `println` is in scope, but it is a function-like macro
-struct C;
-
-#[Deserialize]
-//~^ ERROR cannot find attribute `Deserialize`
-struct D;
-
-#[from_utf8_unchecked]
-//~^ ERROR cannot find attribute `from_utf8_unchecked`
-struct E;
-
-#[println]
-//~^ ERROR cannot find attribute `println`
-//~| NOTE `println` is in scope, but it is a function-like macro
-struct F;
-
-fn main() {
- from_utf8!();
- //~^ ERROR cannot find macro `from_utf8`
-
- Box!();
- //~^ ERROR cannot find macro `Box`
- //~| NOTE `Box` is in scope, but it is a struct
-
- Copy!();
- //~^ ERROR cannot find macro `Copy`
- //~| NOTE `Copy` is in scope, but it is a derive macro
-
- test!();
- //~^ ERROR cannot find macro `test`
- //~| NOTE `test` is in scope, but it is an attribute
-
- X!();
- //~^ ERROR cannot find macro `X`
-}