summaryrefslogtreecommitdiffstats
path: root/src/test/ui/path-lookahead.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/path-lookahead.fixed')
-rw-r--r--src/test/ui/path-lookahead.fixed17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/ui/path-lookahead.fixed b/src/test/ui/path-lookahead.fixed
new file mode 100644
index 000000000..928955630
--- /dev/null
+++ b/src/test/ui/path-lookahead.fixed
@@ -0,0 +1,17 @@
+// run-pass
+// run-rustfix
+
+#![allow(dead_code)]
+#![warn(unused_parens)]
+
+// Parser test for #37765
+
+fn with_parens<T: ToString>(arg: T) -> String {
+ return <T as ToString>::to_string(&arg); //~WARN unnecessary parentheses around `return` value
+}
+
+fn no_parens<T: ToString>(arg: T) -> String {
+ return <T as ToString>::to_string(&arg);
+}
+
+fn main() {}