]> git.lizzy.rs Git - rust.git/blob - tests/ui/range/range_traits-7.rs
Rollup merge of #106532 - compiler-errors:dyn-star-to-dyn, r=jackh726
[rust.git] / tests / ui / range / range_traits-7.rs
1 // build-pass (FIXME(62277): could be check-pass?)
2
3 use std::ops::*;
4
5 #[derive(Copy, Clone)]
6 struct R(RangeToInclusive<usize>);
7
8
9 fn main() {}