summaryrefslogtreecommitdiffstats
path: root/src/test/ui/attributes/collapse-debuginfo-invalid.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/attributes/collapse-debuginfo-invalid.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/attributes/collapse-debuginfo-invalid.rs')
-rw-r--r--src/test/ui/attributes/collapse-debuginfo-invalid.rs110
1 files changed, 0 insertions, 110 deletions
diff --git a/src/test/ui/attributes/collapse-debuginfo-invalid.rs b/src/test/ui/attributes/collapse-debuginfo-invalid.rs
deleted file mode 100644
index 42d8982c1..000000000
--- a/src/test/ui/attributes/collapse-debuginfo-invalid.rs
+++ /dev/null
@@ -1,110 +0,0 @@
-#![feature(collapse_debuginfo)]
-#![feature(stmt_expr_attributes)]
-#![feature(type_alias_impl_trait)]
-#![no_std]
-
-// Test that the `#[collapse_debuginfo]` attribute can only be used on macro definitions.
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-extern crate std;
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-use std::collections::HashMap;
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-static FOO: u32 = 3;
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-const BAR: u32 = 3;
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-fn foo() {
- let _ = #[collapse_debuginfo] || { };
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
- #[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
- let _ = 3;
- let _ = #[collapse_debuginfo] 3;
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
- match (3, 4) {
- #[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
- _ => (),
- }
-}
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-mod bar {
-}
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-type Map = HashMap<u32, u32>;
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-enum Foo {
- #[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
- Variant,
-}
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-struct Bar {
- #[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
- field: u32,
-}
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-union Qux {
- a: u32,
- b: u16
-}
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-trait Foobar {
- #[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
- type Bar;
-}
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-type AFoobar = impl Foobar;
-
-impl Foobar for Bar {
- type Bar = u32;
-}
-
-fn constraining() -> AFoobar {
- Bar { field: 3 }
-}
-
-#[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
-impl Bar {
- #[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
- const FOO: u32 = 3;
-
- #[collapse_debuginfo]
-//~^ ERROR `collapse_debuginfo` attribute should be applied to macro definitions
- fn bar(&self) {}
-}
-
-#[collapse_debuginfo]
-macro_rules! finally {
- ($e:expr) => { $e }
-}
-
-fn main() {}