about summary refs log tree commit diff
path: root/tests/ui/range/range_traits-7.rs
blob: 95e101b0988cf632d1528f6ee1500eb6678b0cd9 (plain)
1
2
3
4
5
6
7
8
9
//@ build-pass (FIXME(62277): could be check-pass?)

use std::ops::*;

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


fn main() {}