blob: be4e451ceb12f7821c75677d99be26fc1b8eacfc [file] [log] [blame]
// 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
}