summary refs log tree commit diff
path: root/src/test/ui/range/range_traits-2.rs
blob: c34ef781d8c789977ef6f6788ba0c0faace22a79 (plain)
1
2
3
4
5
6
7
use std::ops::*;

#[derive(Copy, Clone)] //~ ERROR Copy
struct R(Range<usize>);

fn main() {}