mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 08:50:37 +00:00
7 lines
98 B
Rust
7 lines
98 B
Rust
use std::ops::*;
|
|
|
|
#[derive(Copy, Clone)] //~ ERROR Copy
|
|
struct R(RangeFrom<usize>);
|
|
|
|
fn main() {}
|