summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-88276-unary-plus.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/issues/issue-88276-unary-plus.rs')
-rw-r--r--tests/ui/parser/issues/issue-88276-unary-plus.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ui/parser/issues/issue-88276-unary-plus.rs b/tests/ui/parser/issues/issue-88276-unary-plus.rs
new file mode 100644
index 000000000..11b2e9d60
--- /dev/null
+++ b/tests/ui/parser/issues/issue-88276-unary-plus.rs
@@ -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
+}