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;
|
|
}
|