summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-47073-zero-padded-tuple-struct-indices.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/issues/issue-47073-zero-padded-tuple-struct-indices.stderr')
-rw-r--r--tests/ui/issues/issue-47073-zero-padded-tuple-struct-indices.stderr17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-47073-zero-padded-tuple-struct-indices.stderr b/tests/ui/issues/issue-47073-zero-padded-tuple-struct-indices.stderr
new file mode 100644
index 000000000..5e1b816de
--- /dev/null
+++ b/tests/ui/issues/issue-47073-zero-padded-tuple-struct-indices.stderr
@@ -0,0 +1,17 @@
+error[E0609]: no field `00` on type `Verdict`
+ --> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:8:30
+ |
+LL | let _condemned = justice.00;
+ | ^^ help: a field with a similar name exists: `0`
+
+error[E0609]: no field `001` on type `Verdict`
+ --> $DIR/issue-47073-zero-padded-tuple-struct-indices.rs:10:31
+ |
+LL | let _punishment = justice.001;
+ | ^^^ unknown field
+ |
+ = note: available fields are: `0`, `1`
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0609`.