mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 12:39:53 +00:00
10 lines
107 B
Rust
10 lines
107 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
|
|
#[derive(Clone)]
|
|
enum Test<'a> {
|
|
Slice(&'a isize)
|
|
}
|
|
|
|
fn main() {}
|