Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
error-should-say-copy-not-pod.rs
blob: 40c4730ef699b1c5501ec41065f7f02d39425d57 [
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 : Copy` is not satisfied
}