(args: fmt::Arguments)
| 18 | } |
| 19 | |
| 20 | pub fn _print(args: fmt::Arguments) { |
| 21 | use core::fmt::Write; |
| 22 | Writer{}.write_fmt(args).unwrap(); |
| 23 | } |
| 24 | |
| 25 | #[macro_export] |
| 26 | macro_rules! debug_print { |
nothing calls this directly
no outgoing calls
no test coverage detected