summaryrefslogtreecommitdiffstats
path: root/src/test/ui/reachable/expr_struct.stderr
blob: 36b070456c56bfd074e72db2e2c6c5254603e153 (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
39
40
41
42
error: unreachable expression
  --> $DIR/expr_struct.rs:14:13
   |
LL |     let x = Foo { a: 22, b: 33, ..return };
   |             ^^^^^^^^^^^^^^^^^^^^^^------^^
   |             |                     |
   |             |                     any code following this expression is unreachable
   |             unreachable expression
   |
note: the lint level is defined here
  --> $DIR/expr_struct.rs:4:9
   |
LL | #![deny(unreachable_code)]
   |         ^^^^^^^^^^^^^^^^

error: unreachable expression
  --> $DIR/expr_struct.rs:19:33
   |
LL |     let x = Foo { a: return, b: 33, ..return };
   |                      ------     ^^ unreachable expression
   |                      |
   |                      any code following this expression is unreachable

error: unreachable expression
  --> $DIR/expr_struct.rs:24:39
   |
LL |     let x = Foo { a: 22, b: return, ..return };
   |                             ------    ^^^^^^ unreachable expression
   |                             |
   |                             any code following this expression is unreachable

error: unreachable expression
  --> $DIR/expr_struct.rs:29:13
   |
LL |     let x = Foo { a: 22, b: return };
   |             ^^^^^^^^^^^^^^^^------^^
   |             |               |
   |             |               any code following this expression is unreachable
   |             unreachable expression

error: aborting due to 4 previous errors