macro_rules! warn {
($msg:tt $(, $($arg:tt)*)?) => { ... };
}Expand description
Emit a compile-time warning.
This is typically only shown for the current crate when building with cargo build, but
warnings for non-path dependencies can be shown by using cargo build -vv.