Sign in
android
/
toolchain
/
rustc
/
59fbe18bc79ed87d0c5f02705e7cf19e402e1f2b
/
.
/
src
/
test
/
ui
/
const-generics
/
issues
/
issue-60818-struct-constructors.rs
blob: 6e64c78cd8c96979fa135386b1bea79b1cc96b4c [
file
] [
log
] [
blame
]
// check-pass
// revisions: full min
#![
cfg_attr
(
full
,
feature
(
const_generics
))]
//[full]~WARN the feature `const_generics` is incomplete
struct
Generic
<
const
V
:
usize
>;
fn
main
()
{
let
_
=
Generic
::<
0
>;
}