6 lines
94 B
Rust
6 lines
94 B
Rust
use std::ops::*;
|
|
|
|
#[derive(Copy, Clone)]
|
|
struct R(Range<usize>); //~ ERROR Copy
|
|
|
|
fn main() {}
|