rust/tests/ui/rfc-2361-dbg-macro/dbg-macro-requires-debug.rs
2023-01-11 09:32:08 +00:00

8 lines
200 B
Rust

// Test ensuring that `dbg!(expr)` requires the passed type to implement `Debug`.
struct NotDebug;
fn main() {
let _: NotDebug = dbg!(NotDebug); //~ ERROR `NotDebug` doesn't implement `Debug`
}