1
2
3
4
5
6
// Identity macro to allow expansion of the "mutability" token tree.
macro_rules! id {
    ($e:item) => {
        $e
    };
}