mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
32 lines
367 B
Rust
32 lines
367 B
Rust
#[macro_export]
|
|
macro_rules! expr {
|
|
() => {
|
|
1
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! stmt {
|
|
() => {
|
|
let _x = ();
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! ty {
|
|
() => { &'static str };
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! pat {
|
|
() => {
|
|
_
|
|
};
|
|
}
|
|
|
|
#[macro_export]
|
|
macro_rules! item {
|
|
() => {
|
|
const ITEM: usize = 1;
|
|
};
|
|
}
|