2023-04-23 06:03:09 -05:00
|
|
|
//@aux-build:proc_macros.rs
|
2019-12-05 04:06:13 -06:00
|
|
|
|
2023-03-24 08:04:35 -05: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-31 08:24:45 -05:00
|
|
|
let mut x = String::new();
|
2019-09-25 12:33:48 -05:00
|
|
|
|
|
|
|
for _ in 1..3 {
|
|
|
|
x = x + ".";
|
|
|
|
}
|
|
|
|
|
2022-08-31 08:24:45 -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-24 08:04:35 -05:00
|
|
|
external!({
|
|
|
|
let y = "".to_owned();
|
|
|
|
let z = y + "...";
|
|
|
|
});
|
2019-09-25 12:33:48 -05:00
|
|
|
}
|