summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.rs')
-rw-r--r--src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.rs b/src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.rs
deleted file mode 100644
index ae1dbfeea..000000000
--- a/src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-fn foo(a: usize, b: usize) -> usize { a }
-
-struct S(usize, usize);
-
-trait T {
- fn baz(x: usize, y: usize) -> usize { x }
-}
-
-fn main() {
- let _: usize = foo(_, _);
- //~^ ERROR `_` can only be used on the left-hand side of an assignment
- //~| ERROR `_` can only be used on the left-hand side of an assignment
- let _: S = S(_, _);
- //~^ ERROR `_` can only be used on the left-hand side of an assignment
- //~| ERROR `_` can only be used on the left-hand side of an assignment
- let _: usize = T::baz(_, _);
- //~^ ERROR `_` can only be used on the left-hand side of an assignment
- //~| ERROR `_` can only be used on the left-hand side of an assignment
-}