rustc/tests/ui/error-should-say-copy-not-pod.rs
2023-08-02 10:33:26 +02:00

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
}