mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
7 lines
94 B
Rust
7 lines
94 B
Rust
use std::ops::*;
|
|
|
|
#[derive(Copy, Clone)]
|
|
struct R(Range<usize>); //~ ERROR Copy
|
|
|
|
fn main() {}
|