rust/tests/ui/range/range_traits-2.rs

6 lines
94 B
Rust

use std::ops::*;
#[derive(Copy, Clone)]
struct R(Range<usize>); //~ ERROR Copy
fn main() {}