rust/tests/ui/range/range_traits-3.rs

7 lines
98 B
Rust
Raw Normal View History

2016-06-09 19:32:43 +00:00
use std::ops::*;
#[derive(Copy, Clone)] //~ ERROR Copy
struct R(RangeFrom<usize>);
fn main() {}