about summary refs log tree commit diff
path: root/tests/ui/range/range_traits-4.rs
blob: 4241325e1d9afe08c9b576188afdc4ae3a416cd7 (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(RangeTo<usize>);


fn main() {}