2023-07-27 08:23:04 -05:00
|
|
|
//@aux-build:proc_macros.rs
|
2023-07-27 06:40:22 -05:00
|
|
|
//@no-rustfix
|
2023-03-07 08:40:55 -06:00
|
|
|
extern crate proc_macros;
|
|
|
|
use proc_macros::external;
|
2019-12-05 04:06:13 -06:00
|
|
|
|
2019-09-25 12:33:48 -05:00
|
|
|
#[warn(clippy::string_add)]
|
|
|
|
#[allow(clippy::string_add_assign, unused)]
|
|
|
|
fn main() {
|
|
|
|
// ignores assignment distinction
|
2022-08-05 18:59:50 -05:00
|
|
|
let mut x = String::new();
|
2019-09-25 12:33:48 -05:00
|
|
|
|
|
|
|
for _ in 1..3 {
|
|
|
|
x = x + ".";
|
|
|
|
}
|
|
|
|
|
2022-08-05 18:59:50 -05:00
|
|
|
let y = String::new();
|
2019-09-25 12:33:48 -05:00
|
|
|
let z = y + "...";
|
|
|
|
|
|
|
|
assert_eq!(&x, &z);
|
|
|
|
|
|
|
|
let mut x = 1;
|
|
|
|
x = x + 1;
|
|
|
|
assert_eq!(2, x);
|
2019-12-04 14:50:28 -06:00
|
|
|
|
2023-03-07 08:40:55 -06:00
|
|
|
external!({
|
|
|
|
let y = "".to_owned();
|
|
|
|
let z = y + "...";
|
|
|
|
});
|
2019-09-25 12:33:48 -05:00
|
|
|
}
|