blob: bdde484c252179a3dcd247fb9489c30d79ca1948 [file] [log] [blame]
// 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 `std::fmt::Debug`
}