summaryrefslogtreecommitdiffstats
path: root/src/test/ui/attributes/issue-90873.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/attributes/issue-90873.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/attributes/issue-90873.stderr')
-rw-r--r--src/test/ui/attributes/issue-90873.stderr44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/test/ui/attributes/issue-90873.stderr b/src/test/ui/attributes/issue-90873.stderr
deleted file mode 100644
index 894ec8341..000000000
--- a/src/test/ui/attributes/issue-90873.stderr
+++ /dev/null
@@ -1,44 +0,0 @@
-error: unexpected expression: `||
- {
- static d: _ = || 1;
- }`
- --> $DIR/issue-90873.rs:1:6
- |
-LL | #![u=||{static d=||1;}]
- | ^^^^^^^^^^^^^^^^^
-
-error: unexpected expression: `{
- impl std::ops::Neg for i8 {}
- }`
- --> $DIR/issue-90873.rs:6:6
- |
-LL | #![a={impl std::ops::Neg for i8 {}}]
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: cannot find attribute `u` in this scope
- --> $DIR/issue-90873.rs:1:4
- |
-LL | #![u=||{static d=||1;}]
- | ^
-
-error: cannot find attribute `a` in this scope
- --> $DIR/issue-90873.rs:6:4
- |
-LL | #![a={impl std::ops::Neg for i8 {}}]
- | ^
-
-error[E0601]: `main` function not found in crate `issue_90873`
- --> $DIR/issue-90873.rs:6:37
- |
-LL | #![a={impl std::ops::Neg for i8 {}}]
- | ^ consider adding a `main` function to `$DIR/issue-90873.rs`
-
-error: missing type for `static` item
- --> $DIR/issue-90873.rs:1:17
- |
-LL | #![u=||{static d=||1;}]
- | ^ help: provide a type for the item: `: <type>`
-
-error: aborting due to 6 previous errors
-
-For more information about this error, try `rustc --explain E0601`.