18 lines
307 B
Rust
18 lines
307 B
Rust
//@ edition:2018
|
|
|
|
#[macro_export]
|
|
macro_rules! gen_imports { () => {
|
|
use import::Path;
|
|
use std::collections::LinkedList;
|
|
|
|
fn check_absolute() {
|
|
::absolute::Path;
|
|
::std::collections::LinkedList::<u8>::new();
|
|
}
|
|
}}
|
|
|
|
#[macro_export]
|
|
macro_rules! gen_glob { () => {
|
|
use *;
|
|
}}
|