summaryrefslogtreecommitdiffstats
path: root/tests/ui/argument-suggestions/issue-112507.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/argument-suggestions/issue-112507.stderr')
-rw-r--r--tests/ui/argument-suggestions/issue-112507.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/ui/argument-suggestions/issue-112507.stderr b/tests/ui/argument-suggestions/issue-112507.stderr
new file mode 100644
index 000000000..dfb47e010
--- /dev/null
+++ b/tests/ui/argument-suggestions/issue-112507.stderr
@@ -0,0 +1,27 @@
+error[E0061]: this enum variant takes 1 argument but 4 arguments were supplied
+ --> $DIR/issue-112507.rs:6:14
+ |
+LL | let _a = Value::Float(
+ | ^^^^^^^^^^^^
+LL | 0,
+ | - unexpected argument of type `{integer}`
+LL | None,
+LL | None,
+ | ---- unexpected argument of type `Option<_>`
+LL | 0,
+ | - unexpected argument of type `{integer}`
+ |
+note: tuple variant defined here
+ --> $DIR/issue-112507.rs:2:5
+ |
+LL | Float(Option<f64>),
+ | ^^^^^
+help: remove the extra arguments
+ |
+LL ~ ,
+LL ~ None);
+ |
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0061`.