Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
range
/
range_traits-6.rs
blob: 72c6cecc88d6900a9ef4792978aec790848728e3 [
file
]
use
std
::
ops
::*;
#[
derive
(
Copy
,
Clone
)]
struct
R
(
RangeInclusive
<
usize
>);
//~ ERROR Copy
fn
main
()
{}