summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/fn-or-tuple-struct-with-underscore-args.stderr
blob: aa562030619896512126044dc393cb2c9ce53254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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