6 lines
82 B
Rust
6 lines
82 B
Rust
|
macro_rules! test {
|
||
|
($T:ident, $b:lifetime) => {
|
||
|
Box<$T<$b>>
|
||
|
};
|
||
|
}
|