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

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

fn main() {}