summary refs log tree commit diff
path: root/src/test/ui/range/range_traits-7.rs
blob: c328ecb223a284cd08772480ba0811f48f2e9b1f (plain)
1
2
3
4
5
6
7
8
9
10
// compile-pass

use std::ops::*;

#[derive(Copy, Clone)]
struct R(RangeToInclusive<usize>);


fn main() {}