blob: de6fb465e8b7d08492c08579efb1b5bcca278453 [file] [log] [blame]
macro_rules! check {
($f:tt) => {
assert_eq!(pretty($f), stringify!($f));
};
(-$f:tt) => {
assert_eq!(pretty(-$f), concat!("-", stringify!($f)));
};
}