summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.stderr')
-rw-r--r--src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.stderr38
1 files changed, 0 insertions, 38 deletions
diff --git a/src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.stderr b/src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.stderr
deleted file mode 100644
index aa5620306..000000000
--- a/src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.stderr
+++ /dev/null
@@ -1,38 +0,0 @@
-error: in expressions, `_` can only be used on the left-hand side of an assignment
- --> $DIR/fn-or-tuple-struct-with-underscore-args.rs:10:24
- |
-LL | let _: usize = foo(_, _);
- | ^ `_` not allowed here
-
-error: in expressions, `_` can only be used on the left-hand side of an assignment
- --> $DIR/fn-or-tuple-struct-with-underscore-args.rs:10:27
- |
-LL | let _: usize = foo(_, _);
- | ^ `_` not allowed here
-
-error: in expressions, `_` can only be used on the left-hand side of an assignment
- --> $DIR/fn-or-tuple-struct-with-underscore-args.rs:13:18
- |
-LL | let _: S = S(_, _);
- | ^ `_` not allowed here
-
-error: in expressions, `_` can only be used on the left-hand side of an assignment
- --> $DIR/fn-or-tuple-struct-with-underscore-args.rs:13:21
- |
-LL | let _: S = S(_, _);
- | ^ `_` not allowed here
-
-error: in expressions, `_` can only be used on the left-hand side of an assignment
- --> $DIR/fn-or-tuple-struct-with-underscore-args.rs:16:27
- |
-LL | let _: usize = T::baz(_, _);
- | ^ `_` not allowed here
-
-error: in expressions, `_` can only be used on the left-hand side of an assignment
- --> $DIR/fn-or-tuple-struct-with-underscore-args.rs:16:30
- |
-LL | let _: usize = T::baz(_, _);
- | ^ `_` not allowed here
-
-error: aborting due to 6 previous errors
-