mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
40ae34194c
detects redundant imports that can be eliminated. for #117772 : In order to facilitate review and modification, split the checking code and removing redundant imports code into two PR.
52 lines
1.1 KiB
Rust
52 lines
1.1 KiB
Rust
// run-pass
|
|
|
|
fn test_stack_assign() {
|
|
let s: String = "a".to_string();
|
|
println!("{}", s.clone());
|
|
let t: String = "a".to_string();
|
|
assert_eq!(s, t);
|
|
let u: String = "b".to_string();
|
|
assert!((s != u));
|
|
}
|
|
|
|
fn test_heap_lit() { "a big string".to_string(); }
|
|
|
|
fn test_heap_assign() {
|
|
let s: String = "a big ol' string".to_string();
|
|
let t: String = "a big ol' string".to_string();
|
|
assert_eq!(s, t);
|
|
let u: String = "a bad ol' string".to_string();
|
|
assert!((s != u));
|
|
}
|
|
|
|
fn test_heap_log() {
|
|
let s = "a big ol' string".to_string();
|
|
println!("{}", s);
|
|
}
|
|
|
|
fn test_append() {
|
|
let mut s = String::new();
|
|
s.push_str("a");
|
|
assert_eq!(s, "a");
|
|
|
|
let mut s = String::from("a");
|
|
s.push_str("b");
|
|
println!("{}", s.clone());
|
|
assert_eq!(s, "ab");
|
|
|
|
let mut s = String::from("c");
|
|
s.push_str("offee");
|
|
assert_eq!(s, "coffee");
|
|
|
|
s.push_str("&tea");
|
|
assert_eq!(s, "coffee&tea");
|
|
}
|
|
|
|
pub fn main() {
|
|
test_stack_assign();
|
|
test_heap_lit();
|
|
test_heap_assign();
|
|
test_heap_log();
|
|
test_append();
|
|
}
|