Macro here::ehere[][src]

macro_rules! ehere {
    () => { ... };
    ($msg:literal) => { ... };
    ($msg:literal, $($args:expr),+) => { ... };
}
Expand description

Prints the line number and filename to stderr. Additionally, it can accept a string literal and format arguments like the format! macro.