rust/src/test/ui/error-should-say-copy-not-pod.rs
2018-12-25 21:08:33 -07:00

8 lines
196 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 : std::marker::Copy` is not satisfied
}