]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-should-say-copy-not-pod.rs
Merge commit '0cb0f7636851f9fcc57085cf80197a2ef6db098f' into clippyup
[rust.git] / src / test / ui / error-should-say-copy-not-pod.rs
1 // Tests that the error message uses the word Copy, not Pod.
2
3 fn check_bound<T:Copy>(_: T) {}
4
5 fn main() {
6     check_bound("nocopy".to_string()); //~ ERROR : Copy` is not satisfied
7 }