blob: 2e2440462ae4e9f15b5ef94944dfcbd688673bf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
pub fn increment(x: usize) -> usize {
x + 1
}
#[macro_export]
macro_rules! increment {
($x:expr) => ($crate::increment($x))
}
pub fn check_local() {
assert_eq!(increment!(3), 4);
}
|