Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
const-generics
/
issues
/
issue-60818-struct-constructors.rs
blob: 0066490dfa37a02117518ebe98fc670746160ff8 [
file
] [
log
] [
blame
]
// check-pass
struct
Generic
<
const
V
:
usize
>;
fn
main
()
{
let
_
=
Generic
::<
0
>;
}