mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +03:00
10 lines
107 B
Rust
10 lines
107 B
Rust
//@ check-pass
|
|
|
|
use std::ops::*;
|
|
|
|
#[derive(Copy, Clone)]
|
|
struct R(RangeToInclusive<usize>);
|
|
|
|
|
|
fn main() {}
|