summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/suggest-variants.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/suggestions/suggest-variants.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/suggestions/suggest-variants.stderr')
-rw-r--r--src/test/ui/suggestions/suggest-variants.stderr63
1 files changed, 0 insertions, 63 deletions
diff --git a/src/test/ui/suggestions/suggest-variants.stderr b/src/test/ui/suggestions/suggest-variants.stderr
deleted file mode 100644
index a422bc656..000000000
--- a/src/test/ui/suggestions/suggest-variants.stderr
+++ /dev/null
@@ -1,63 +0,0 @@
-error[E0599]: no variant named `Squareee` found for enum `Shape`
- --> $DIR/suggest-variants.rs:12:41
- |
-LL | enum Shape {
- | ---------- variant `Squareee` not found here
-...
-LL | println!("My shape is {:?}", Shape::Squareee { size: 5});
- | ^^^^^^^^ help: there is a variant with a similar name: `Square`
-
-error[E0599]: no variant named `Circl` found for enum `Shape`
- --> $DIR/suggest-variants.rs:13:41
- |
-LL | enum Shape {
- | ---------- variant `Circl` not found here
-...
-LL | println!("My shape is {:?}", Shape::Circl { size: 5});
- | ^^^^^ help: there is a variant with a similar name: `Circle`
-
-error[E0599]: no variant named `Rombus` found for enum `Shape`
- --> $DIR/suggest-variants.rs:14:41
- |
-LL | enum Shape {
- | ---------- variant `Rombus` not found here
-...
-LL | println!("My shape is {:?}", Shape::Rombus{ size: 5});
- | ^^^^^^ variant not found in `Shape`
-
-error[E0599]: no variant or associated item named `Squareee` found for enum `Shape` in the current scope
- --> $DIR/suggest-variants.rs:15:12
- |
-LL | enum Shape {
- | ---------- variant or associated item `Squareee` not found for this enum
-...
-LL | Shape::Squareee;
- | ^^^^^^^^
- | |
- | variant or associated item not found in `Shape`
- | help: there is a variant with a similar name: `Square`
-
-error[E0599]: no variant or associated item named `Circl` found for enum `Shape` in the current scope
- --> $DIR/suggest-variants.rs:16:12
- |
-LL | enum Shape {
- | ---------- variant or associated item `Circl` not found for this enum
-...
-LL | Shape::Circl;
- | ^^^^^
- | |
- | variant or associated item not found in `Shape`
- | help: there is a variant with a similar name: `Circle`
-
-error[E0599]: no variant or associated item named `Rombus` found for enum `Shape` in the current scope
- --> $DIR/suggest-variants.rs:17:12
- |
-LL | enum Shape {
- | ---------- variant or associated item `Rombus` not found for this enum
-...
-LL | Shape::Rombus;
- | ^^^^^^ variant or associated item not found in `Shape`
-
-error: aborting due to 6 previous errors
-
-For more information about this error, try `rustc --explain E0599`.