summaryrefslogtreecommitdiffstats
path: root/src/test/ui/path-lookahead.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/path-lookahead.stderr')
-rw-r--r--src/test/ui/path-lookahead.stderr19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/path-lookahead.stderr b/src/test/ui/path-lookahead.stderr
deleted file mode 100644
index 2cc786fd9..000000000
--- a/src/test/ui/path-lookahead.stderr
+++ /dev/null
@@ -1,19 +0,0 @@
-warning: unnecessary parentheses around `return` value
- --> $DIR/path-lookahead.rs:10:12
- |
-LL | return (<T as ToString>::to_string(&arg));
- | ^ ^
- |
-note: the lint level is defined here
- --> $DIR/path-lookahead.rs:5:9
- |
-LL | #![warn(unused_parens)]
- | ^^^^^^^^^^^^^
-help: remove these parentheses
- |
-LL - return (<T as ToString>::to_string(&arg));
-LL + return <T as ToString>::to_string(&arg);
- |
-
-warning: 1 warning emitted
-