rust/tests/ui/trivial-bounds/trivial-bounds-leak-copy.rs

13 lines
220 B
Rust

// Check that false Copy bounds don't leak
#![feature(trivial_bounds)]
fn copy_out_string(t: &String) -> String where String: Copy {
*t
}
fn move_out_string(t: &String) -> String {
*t //~ ERROR
}
fn main() {}