summaryrefslogtreecommitdiffstats
path: root/src/test/ui/extern/extern-no-mangle.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/extern/extern-no-mangle.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/extern/extern-no-mangle.rs')
-rw-r--r--src/test/ui/extern/extern-no-mangle.rs30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/test/ui/extern/extern-no-mangle.rs b/src/test/ui/extern/extern-no-mangle.rs
deleted file mode 100644
index ab7c9824a..000000000
--- a/src/test/ui/extern/extern-no-mangle.rs
+++ /dev/null
@@ -1,30 +0,0 @@
-#![warn(unused_attributes)]
-
-// Tests that placing the #[no_mangle] attribute on a foreign fn or static emits
-// a specialized warning.
-// The previous warning only talks about a "function or static" but foreign fns/statics
-// are also not allowed to have #[no_mangle]
-
-// build-pass
-
-extern "C" {
- #[no_mangle]
- //~^ WARNING `#[no_mangle]` has no effect on a foreign static
- //~^^ WARNING this was previously accepted by the compiler
- pub static FOO: u8;
-
- #[no_mangle]
- //~^ WARNING `#[no_mangle]` has no effect on a foreign function
- //~^^ WARNING this was previously accepted by the compiler
- pub fn bar();
-}
-
-fn no_new_warn() {
- // Should emit the generic "not a function or static" warning
- #[no_mangle]
- //~^ WARNING attribute should be applied to a free function, impl method or static
- //~^^ WARNING this was previously accepted by the compiler
- let x = 0_u8;
-}
-
-fn main() {}