@@ -4,7 +4,7 @@ error[E0716]: temporary value dropped while borrowed
4
4
LL | let x1 = arg(&AddFlags(1));
5
5
| ^^^^^^^^^^^ - temporary value is freed at the end of this statement
6
6
| |
7
- | creates a temporary which is freed while still in use
7
+ | creates a temporary value which is freed while still in use
8
8
...
9
9
LL | (x1, x2, x3, x4, x5, x6, x7);
10
10
| -- borrow later used here
@@ -21,7 +21,7 @@ error[E0716]: temporary value dropped while borrowed
21
21
LL | let x2 = AddFlags(1).get();
22
22
| ^^^^^^^^^^^ - temporary value is freed at the end of this statement
23
23
| |
24
- | creates a temporary which is freed while still in use
24
+ | creates a temporary value which is freed while still in use
25
25
...
26
26
LL | (x1, x2, x3, x4, x5, x6, x7);
27
27
| -- borrow later used here
@@ -38,7 +38,7 @@ error[E0716]: temporary value dropped while borrowed
38
38
LL | let x3 = &*arg(&AddFlags(1));
39
39
| ^^^^^^^^^^^ - temporary value is freed at the end of this statement
40
40
| |
41
- | creates a temporary which is freed while still in use
41
+ | creates a temporary value which is freed while still in use
42
42
...
43
43
LL | (x1, x2, x3, x4, x5, x6, x7);
44
44
| -- borrow later used here
@@ -55,7 +55,7 @@ error[E0716]: temporary value dropped while borrowed
55
55
LL | let ref x4 = *arg(&AddFlags(1));
56
56
| ^^^^^^^^^^^ - temporary value is freed at the end of this statement
57
57
| |
58
- | creates a temporary which is freed while still in use
58
+ | creates a temporary value which is freed while still in use
59
59
...
60
60
LL | (x1, x2, x3, x4, x5, x6, x7);
61
61
| -- borrow later used here
@@ -72,7 +72,7 @@ error[E0716]: temporary value dropped while borrowed
72
72
LL | let &ref x5 = arg(&AddFlags(1));
73
73
| ^^^^^^^^^^^ - temporary value is freed at the end of this statement
74
74
| |
75
- | creates a temporary which is freed while still in use
75
+ | creates a temporary value which is freed while still in use
76
76
...
77
77
LL | (x1, x2, x3, x4, x5, x6, x7);
78
78
| -- borrow later used here
@@ -89,7 +89,7 @@ error[E0716]: temporary value dropped while borrowed
89
89
LL | let x6 = AddFlags(1).get();
90
90
| ^^^^^^^^^^^ - temporary value is freed at the end of this statement
91
91
| |
92
- | creates a temporary which is freed while still in use
92
+ | creates a temporary value which is freed while still in use
93
93
...
94
94
LL | (x1, x2, x3, x4, x5, x6, x7);
95
95
| -- borrow later used here
@@ -106,7 +106,7 @@ error[E0716]: temporary value dropped while borrowed
106
106
LL | let StackBox { f: x7 } = StackBox { f: AddFlags(1).get() };
107
107
| ^^^^^^^^^^^ - temporary value is freed at the end of this statement
108
108
| |
109
- | creates a temporary which is freed while still in use
109
+ | creates a temporary value which is freed while still in use
110
110
LL |
111
111
LL | (x1, x2, x3, x4, x5, x6, x7);
112
112
| -- borrow later used here
0 commit comments