Files
Notes/notes-service/vendor/defmt/tests/ui/write-invalid-hint.rs
T
2026-08-01 16:11:49 +03:00

10 lines
148 B
Rust

struct S;
impl defmt::Format for S {
fn format(&self, f: defmt::Formatter) {
defmt::write!(f, "{=u8:dunno}", 42)
}
}
fn main() {}