mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-03 07:38:11 +00:00
17 lines
179 B
Rust
17 lines
179 B
Rust
// run-pass
|
|
|
|
pub trait Stage: Sync {}
|
|
|
|
pub enum Enum {
|
|
A,
|
|
B,
|
|
}
|
|
|
|
impl Stage for Enum {}
|
|
|
|
pub static ARRAY: [(&dyn Stage, &str); 1] = [
|
|
(&Enum::A, ""),
|
|
];
|
|
|
|
fn main() {}
|