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