summaryrefslogtreecommitdiffstats
path: root/src/test/ui/range/range_traits-6.rs
blob: bce106bbfe79bef5b31412275d5da0ec563e6ccb (plain)
1
2
3
4
5
6
use std::ops::*;

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

fn main() {}