2022-05-03 14:56:59 +00:00
|
|
|
#[warn(clippy::mixed_read_write_in_expression)]
|
2018-12-09 22:26:16 +00:00
|
|
|
#[allow(
|
|
|
|
unused_assignments,
|
|
|
|
unused_variables,
|
|
|
|
clippy::no_effect,
|
|
|
|
dead_code,
|
2022-06-08 15:20:30 +00:00
|
|
|
clippy::disallowed_name
|
2018-12-09 22:26:16 +00:00
|
|
|
)]
|
2016-08-11 03:16:28 +00:00
|
|
|
fn main() {
|
|
|
|
let mut x = 0;
|
2018-12-09 22:26:16 +00:00
|
|
|
let a = {
|
|
|
|
x = 1;
|
|
|
|
1
|
|
|
|
} + x;
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-08-11 03:16:28 +00:00
|
|
|
// Example from iss#277
|
2018-12-09 22:26:16 +00:00
|
|
|
x += {
|
|
|
|
x = 20;
|
|
|
|
2
|
|
|
|
};
|
2016-08-11 03:16:28 +00:00
|
|
|
|
|
|
|
// Does it work in weird places?
|
|
|
|
// ...in the base for a struct expression?
|
2018-12-09 22:26:16 +00:00
|
|
|
struct Foo {
|
|
|
|
a: i32,
|
|
|
|
b: i32,
|
|
|
|
};
|
2016-08-11 03:16:28 +00:00
|
|
|
let base = Foo { a: 4, b: 5 };
|
2018-12-09 22:26:16 +00:00
|
|
|
let foo = Foo {
|
|
|
|
a: x,
|
|
|
|
..{
|
|
|
|
x = 6;
|
|
|
|
base
|
|
|
|
}
|
|
|
|
};
|
2016-08-11 03:16:28 +00:00
|
|
|
// ...inside a closure?
|
|
|
|
let closure = || {
|
|
|
|
let mut x = 0;
|
2018-12-09 22:26:16 +00:00
|
|
|
x += {
|
|
|
|
x = 20;
|
|
|
|
2
|
|
|
|
};
|
2016-08-11 03:16:28 +00:00
|
|
|
};
|
|
|
|
// ...not across a closure?
|
|
|
|
let mut y = 0;
|
2018-12-09 22:26:16 +00:00
|
|
|
let b = (y, || y = 1);
|
2016-08-11 03:16:28 +00:00
|
|
|
|
|
|
|
// && and || evaluate left-to-right.
|
2018-12-09 22:26:16 +00:00
|
|
|
let a = {
|
|
|
|
x = 1;
|
|
|
|
true
|
|
|
|
} && (x == 3);
|
|
|
|
let a = {
|
|
|
|
x = 1;
|
|
|
|
true
|
|
|
|
} || (x == 3);
|
2016-08-11 03:16:28 +00:00
|
|
|
|
|
|
|
// Make sure we don't get confused by alpha conversion.
|
2018-12-09 22:26:16 +00:00
|
|
|
let a = {
|
|
|
|
let mut x = 1;
|
|
|
|
x = 2;
|
|
|
|
1
|
|
|
|
} + x;
|
2016-08-11 03:16:28 +00:00
|
|
|
|
|
|
|
// No warning if we don't read the variable...
|
2018-12-09 22:26:16 +00:00
|
|
|
x = {
|
|
|
|
x = 20;
|
|
|
|
2
|
|
|
|
};
|
2016-08-11 03:16:28 +00:00
|
|
|
// ...if the assignment is in a closure...
|
2018-12-09 22:26:16 +00:00
|
|
|
let b = {
|
|
|
|
|| {
|
|
|
|
x = 1;
|
|
|
|
};
|
|
|
|
1
|
|
|
|
} + x;
|
2016-08-11 03:16:28 +00:00
|
|
|
// ... or the access is under an address.
|
2018-12-09 22:26:16 +00:00
|
|
|
let b = (
|
|
|
|
{
|
|
|
|
let p = &x;
|
|
|
|
1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
x = 1;
|
|
|
|
x
|
|
|
|
},
|
|
|
|
);
|
2016-08-11 03:16:28 +00:00
|
|
|
|
|
|
|
// Limitation: l-values other than simple variables don't trigger
|
|
|
|
// the warning.
|
|
|
|
let mut tup = (0, 0);
|
2018-12-09 22:26:16 +00:00
|
|
|
let c = {
|
|
|
|
tup.0 = 1;
|
|
|
|
1
|
|
|
|
} + tup.0;
|
2016-08-11 03:16:28 +00:00
|
|
|
// Limitation: you can get away with a read under address-of.
|
|
|
|
let mut z = 0;
|
2018-12-09 22:26:16 +00:00
|
|
|
let b = (
|
|
|
|
&{
|
|
|
|
z = x;
|
|
|
|
x
|
|
|
|
},
|
|
|
|
{
|
|
|
|
x = 3;
|
|
|
|
x
|
|
|
|
},
|
|
|
|
);
|
2016-08-11 03:16:28 +00:00
|
|
|
}
|
2021-05-05 20:02:47 +00:00
|
|
|
|
|
|
|
async fn issue_6925() {
|
|
|
|
let _ = vec![async { true }.await, async { false }.await];
|
|
|
|
}
|