Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2361-dbg-macro
/
dbg-macro-requires-debug.rs
blob: f2fb62d76f3d1d11d4b69f8626bbecf1a882446d [
file
] [
log
] [
blame
] [
edit
]
// 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`
}