Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
ui
/
const-generics
/
struct-with-invalid-const-param.rs
blob: 207b07bf69514ea7deeff86e290b2b3fbe2865d1 [
file
] [
log
] [
blame
]
#![
feature
(
const_generics
)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
struct
S
<
const
C
:
u8
>(
C
);
//~ ERROR expected type, found const parameter
fn
main
()
{}