Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
derives
/
derive-macro-const-default.rs
blob: 5bba29d11339600a11ed61b42dcc79d1209ee7bc [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
#[
derive
(
Clone
,
PartialEq
,
Debug
)]
struct
Example
<
T
,
const
N
:
usize
=
1usize
>([
T
;
N
]);
fn
main
()
{
let
a
=
Example
([();
16
]);
let
b
=
a
.
clone
();
if
a
!=
b
{
let
_c
=
format
!(
"{:?}"
,
a
);
}
}