mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-17 11:50:28 +00:00
10 lines
130 B
Rust
10 lines
130 B
Rust
//@ build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
use std::ops::*;
|
|
|
|
#[derive(Copy, Clone)]
|
|
struct R(RangeFull);
|
|
|
|
|
|
fn main() {}
|