@@ -4,7 +4,7 @@ error[E0716]: temporary value dropped while borrowed
44LL | let x1 = arg(&AddFlags(1));
55 | ^^^^^^^^^^^ - temporary value is freed at the end of this statement
66 | |
7- | creates a temporary which is freed while still in use
7+ | creates a temporary value which is freed while still in use
88...
99LL | (x1, x2, x3, x4, x5, x6, x7);
1010 | -- borrow later used here
@@ -21,7 +21,7 @@ error[E0716]: temporary value dropped while borrowed
2121LL | let x2 = AddFlags(1).get();
2222 | ^^^^^^^^^^^ - temporary value is freed at the end of this statement
2323 | |
24- | creates a temporary which is freed while still in use
24+ | creates a temporary value which is freed while still in use
2525...
2626LL | (x1, x2, x3, x4, x5, x6, x7);
2727 | -- borrow later used here
@@ -38,7 +38,7 @@ error[E0716]: temporary value dropped while borrowed
3838LL | let x3 = &*arg(&AddFlags(1));
3939 | ^^^^^^^^^^^ - temporary value is freed at the end of this statement
4040 | |
41- | creates a temporary which is freed while still in use
41+ | creates a temporary value which is freed while still in use
4242...
4343LL | (x1, x2, x3, x4, x5, x6, x7);
4444 | -- borrow later used here
@@ -55,7 +55,7 @@ error[E0716]: temporary value dropped while borrowed
5555LL | let ref x4 = *arg(&AddFlags(1));
5656 | ^^^^^^^^^^^ - temporary value is freed at the end of this statement
5757 | |
58- | creates a temporary which is freed while still in use
58+ | creates a temporary value which is freed while still in use
5959...
6060LL | (x1, x2, x3, x4, x5, x6, x7);
6161 | -- borrow later used here
@@ -72,7 +72,7 @@ error[E0716]: temporary value dropped while borrowed
7272LL | let &ref x5 = arg(&AddFlags(1));
7373 | ^^^^^^^^^^^ - temporary value is freed at the end of this statement
7474 | |
75- | creates a temporary which is freed while still in use
75+ | creates a temporary value which is freed while still in use
7676...
7777LL | (x1, x2, x3, x4, x5, x6, x7);
7878 | -- borrow later used here
@@ -89,7 +89,7 @@ error[E0716]: temporary value dropped while borrowed
8989LL | let x6 = AddFlags(1).get();
9090 | ^^^^^^^^^^^ - temporary value is freed at the end of this statement
9191 | |
92- | creates a temporary which is freed while still in use
92+ | creates a temporary value which is freed while still in use
9393...
9494LL | (x1, x2, x3, x4, x5, x6, x7);
9595 | -- borrow later used here
@@ -106,7 +106,7 @@ error[E0716]: temporary value dropped while borrowed
106106LL | let StackBox { f: x7 } = StackBox { f: AddFlags(1).get() };
107107 | ^^^^^^^^^^^ - temporary value is freed at the end of this statement
108108 | |
109- | creates a temporary which is freed while still in use
109+ | creates a temporary value which is freed while still in use
110110LL |
111111LL | (x1, x2, x3, x4, x5, x6, x7);
112112 | -- borrow later used here
0 commit comments