mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-25 23:26:08 +00:00
6 lines
80 B
Rust
6 lines
80 B
Rust
pub struct W<T>(T);
|
|
pub type Wrapper<T> = W<T>;
|
|
pub trait Trait {
|
|
type T;
|
|
}
|