mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
220 B
Rust
12 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() {}
|