blob: 98b91270b7d304477fe6ae82ece2b09a1d1b3834 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
pub trait Mirror<Smoke> {
type Image;
}
impl<T, Smoke> Mirror<Smoke> for T {
type Image = T;
}
pub fn poison<S>(victim: String) where <String as Mirror<S>>::Image: Copy {
loop { drop(victim); }
}
fn main() {
let s = "Hello!".to_owned();
let mut s_copy = s;
s_copy.push_str("World!");
"0wned!".to_owned();
println!("{}", s); //~ ERROR use of moved value
}
|