summaryrefslogtreecommitdiffstats
path: root/tests/ui/type/binding-assigned-block-without-tail-expression.stderr
blob: 3e96d7f317b4a05f44a169abb6785bd74620effc (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
error[E0277]: `()` doesn't implement `std::fmt::Display`
  --> $DIR/binding-assigned-block-without-tail-expression.rs:14:20
   |
LL |         42;
   |           - help: remove this semicolon
...
LL |     println!("{}", x);
   |                    ^ `()` cannot be formatted with the default formatter
   |
   = help: the trait `std::fmt::Display` is not implemented for `()`
   = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
   = note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0277]: `()` doesn't implement `std::fmt::Display`
  --> $DIR/binding-assigned-block-without-tail-expression.rs:15:20
   |
LL |     let y = {};
   |             -- this empty block is missing a tail expression
...
LL |     println!("{}", y);
   |                    ^ `()` cannot be formatted with the default formatter
   |
   = help: the trait `std::fmt::Display` is not implemented for `()`
   = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
   = note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0277]: `()` doesn't implement `std::fmt::Display`
  --> $DIR/binding-assigned-block-without-tail-expression.rs:16:20
   |
LL |         "hi";
   |             - help: remove this semicolon
...
LL |     println!("{}", z);
   |                    ^ `()` cannot be formatted with the default formatter
   |
   = help: the trait `std::fmt::Display` is not implemented for `()`
   = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
   = note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0277]: `()` doesn't implement `std::fmt::Display`
  --> $DIR/binding-assigned-block-without-tail-expression.rs:17:20
   |
LL |       let s = {
   |  _____________-
LL | |         S;
LL | |     };
   | |_____- this block is missing a tail expression
...
LL |       println!("{}", s);
   |                      ^ `()` cannot be formatted with the default formatter
   |
   = help: the trait `std::fmt::Display` is not implemented for `()`
   = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
   = note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0308]: mismatched types
  --> $DIR/binding-assigned-block-without-tail-expression.rs:18:18
   |
LL |         42;
   |           - help: remove this semicolon
...
LL |     let _: i32 = x;
   |            ---   ^ expected `i32`, found `()`
   |            |
   |            expected due to this

error[E0308]: mismatched types
  --> $DIR/binding-assigned-block-without-tail-expression.rs:19:18
   |
LL |     let y = {};
   |             -- this empty block is missing a tail expression
...
LL |     let _: i32 = y;
   |            ---   ^ expected `i32`, found `()`
   |            |
   |            expected due to this

error[E0308]: mismatched types
  --> $DIR/binding-assigned-block-without-tail-expression.rs:20:18
   |
LL |       let z = {
   |  _____________-
LL | |         "hi";
LL | |     };
   | |_____- this block is missing a tail expression
...
LL |       let _: i32 = z;
   |              ---   ^ expected `i32`, found `()`
   |              |
   |              expected due to this

error[E0308]: mismatched types
  --> $DIR/binding-assigned-block-without-tail-expression.rs:21:18
   |
LL |       let s = {
   |  _____________-
LL | |         S;
LL | |     };
   | |_____- this block is missing a tail expression
...
LL |       let _: i32 = s;
   |              ---   ^ expected `i32`, found `()`
   |              |
   |              expected due to this

error: aborting due to 8 previous errors

Some errors have detailed explanations: E0277, E0308.
For more information about an error, try `rustc --explain E0277`.