summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-88276-unary-plus.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/issues/issue-88276-unary-plus.fixed')
-rw-r--r--tests/ui/parser/issues/issue-88276-unary-plus.fixed8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/parser/issues/issue-88276-unary-plus.fixed b/tests/ui/parser/issues/issue-88276-unary-plus.fixed
new file mode 100644
index 000000000..25b7c340f
--- /dev/null
+++ b/tests/ui/parser/issues/issue-88276-unary-plus.fixed
@@ -0,0 +1,8 @@
+// run-rustfix
+#[allow(unused_parens)]
+fn main() {
+ let _ = 1; //~ ERROR leading `+` is not supported
+ let _ = (1.0 + 2.0) * 3.0; //~ ERROR leading `+` is not supported
+ //~| ERROR leading `+` is not supported
+ let _ = [3, 4+6]; //~ ERROR leading `+` is not supported
+}