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, 0 insertions, 17 deletions
diff --git a/src/test/ui/path-lookahead.fixed b/src/test/ui/path-lookahead.fixed
deleted file mode 100644
index 928955630..000000000
--- a/src/test/ui/path-lookahead.fixed
+++ /dev/null
@@ -1,17 +0,0 @@
-// 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() {}