mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 19:46:16 +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() {}
|