2019-12-05 11:06:13 +01:00
|
|
|
// aux-build:macro_rules.rs
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate macro_rules;
|
|
|
|
|
2019-09-25 19:33:48 +02:00
|
|
|
#[warn(clippy::string_add)]
|
|
|
|
#[allow(clippy::string_add_assign, unused)]
|
|
|
|
fn main() {
|
|
|
|
// ignores assignment distinction
|
|
|
|
let mut x = "".to_owned();
|
|
|
|
|
|
|
|
for _ in 1..3 {
|
|
|
|
x = x + ".";
|
|
|
|
}
|
|
|
|
|
|
|
|
let y = "".to_owned();
|
|
|
|
let z = y + "...";
|
|
|
|
|
|
|
|
assert_eq!(&x, &z);
|
|
|
|
|
|
|
|
let mut x = 1;
|
|
|
|
x = x + 1;
|
|
|
|
assert_eq!(2, x);
|
2019-12-04 21:50:28 +01:00
|
|
|
|
2019-12-05 11:06:13 +01:00
|
|
|
string_add!();
|
2019-09-25 19:33:48 +02:00
|
|
|
}
|