mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
8 lines
183 B
Rust
8 lines
183 B
Rust
// Tests that the error message uses the word Copy, not Pod.
|
|
|
|
fn check_bound<T:Copy>(_: T) {}
|
|
|
|
fn main() {
|
|
check_bound("nocopy".to_string()); //~ ERROR : Copy` is not satisfied
|
|
}
|