summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-43988.stderr
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/issues/issue-43988.stderr
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/issues/issue-43988.stderr')
-rw-r--r--src/test/ui/issues/issue-43988.stderr56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/test/ui/issues/issue-43988.stderr b/src/test/ui/issues/issue-43988.stderr
deleted file mode 100644
index 02c5dd5bf..000000000
--- a/src/test/ui/issues/issue-43988.stderr
+++ /dev/null
@@ -1,56 +0,0 @@
-error: malformed `repr` attribute input
- --> $DIR/issue-43988.rs:24:5
- |
-LL | #[repr]
- | ^^^^^^^ help: must be of the form: `#[repr(C)]`
-
-error: malformed `repr` attribute input
- --> $DIR/issue-43988.rs:34:14
- |
-LL | let _z = #[repr] 1;
- | ^^^^^^^ help: must be of the form: `#[repr(C)]`
-
-error[E0518]: attribute should be applied to function or closure
- --> $DIR/issue-43988.rs:5:5
- |
-LL | #[inline]
- | ^^^^^^^^^
-LL | let _a = 4;
- | ----------- not a function or closure
-
-error[E0518]: attribute should be applied to function or closure
- --> $DIR/issue-43988.rs:10:5
- |
-LL | #[inline(XYZ)]
- | ^^^^^^^^^^^^^^
-LL | let _b = 4;
- | ----------- not a function or closure
-
-error[E0552]: unrecognized representation hint
- --> $DIR/issue-43988.rs:14:12
- |
-LL | #[repr(nothing)]
- | ^^^^^^^
- |
- = help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
-
-error[E0552]: unrecognized representation hint
- --> $DIR/issue-43988.rs:18:12
- |
-LL | #[repr(something_not_real)]
- | ^^^^^^^^^^^^^^^^^^
- |
- = help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
-
-error[E0518]: attribute should be applied to function or closure
- --> $DIR/issue-43988.rs:30:5
- |
-LL | #[inline(ABC)]
- | ^^^^^^^^^^^^^^
-LL | foo();
- | ----- not a function or closure
-
-error: aborting due to 7 previous errors
-
-Some errors have detailed explanations: E0518, E0552.
-For more information about an error, try `rustc --explain E0518`.