2019-07-29 02:01:57 +02:00
|
|
|
error[E0573]: expected type, found const parameter `C`
|
|
|
|
--> $DIR/struct-with-invalid-const-param.rs:4:23
|
|
|
|
|
|
|
|
|
LL | struct S<const C: u8>(C);
|
|
|
|
| ^ help: a struct with a similar name exists: `S`
|
|
|
|
|
2019-03-22 01:49:42 +00:00
|
|
|
warning: the feature `const_generics` is incomplete and may cause the compiler to crash
|
|
|
|
--> $DIR/struct-with-invalid-const-param.rs:1:12
|
|
|
|
|
|
|
|
|
LL | #![feature(const_generics)]
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-07-29 02:01:57 +02:00
|
|
|
= note: `#[warn(incomplete_features)]` on by default
|
2019-03-22 01:49:42 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|