Sign in
android
/
toolchain
/
rustc
/
da60c8575e02ed54fcffcb7f2f9289b4705b60ff
/
.
/
src
/
test
/
ui
/
const-generics
/
issue-60818-struct-constructors.rs
blob: 0b4aeae7a4a390ea5ea8f8b771fb53d88f368963 [
file
] [
log
] [
blame
]
// compile-pass
#![
feature
(
const_generics
)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
struct
Generic
<
const
V
:
usize
>;
fn
main
()
{
let
_
=
Generic
::<
0
>;
}