debug3 0.4.1

Space Efficient Pretty Printer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(dead_code)] // Becuase ui-test requires an error, not warning

// TODO: Add #[derive(debug3::Debug)], and have the same error.
// https://twitter.com/adotinthevoid/status/1647682561366188034
pub struct Foo {
    x: i32,
    y: i32,
}

pub fn foo_x(foo: &Foo) -> i32 {
    foo.x
}

fn main() {}