Sign in
android
/
toolchain
/
rustc
/
15a6560abe9880705f51d219c1fa94f880dbaf35
/
.
/
src
/
test
/
ui
/
lint
/
lint-missing-copy-implementations.rs
blob: 918f40de15378014d103d6a7eb5d02e184bbbad4 [
file
] [
log
] [
blame
]
// See issue 19712
#![
deny
(
missing_copy_implementations
)]
mod
inner
{
pub
struct
Foo
{
//~ ERROR type could implement `Copy`; consider adding `impl Copy`
pub
field
:
i32
}
}
pub
fn
foo
()
->
inner
::
Foo
{
inner
::
Foo
{
field
:
42
}
}
fn
main
()
{}