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);
|
2019-10-14 17:20:50 -07:00
|
|
|
| ----------------------^--
|
|
|
|
| | |
|
|
|
|
| | help: a struct with a similar name exists: `S`
|
|
|
|
| similarly named struct `S` defined here
|
2019-07-29 02:01:57 +02:00
|
|
|
|
2020-04-22 10:21:32 +02:00
|
|
|
warning: the feature `const_generics` is incomplete and may not be safe to use and/or cause compiler crashes
|
2019-03-22 01:49:42 +00:00
|
|
|
--> $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
|
2020-04-22 10:21:32 +02:00
|
|
|
= note: see issue #44580 <https://github.com/rust-lang/rust/issues/44580> for more information
|
2019-03-22 01:49:42 +00:00
|
|
|
|
2020-03-11 16:30:09 +01:00
|
|
|
error: aborting due to previous error; 1 warning emitted
|
2019-03-22 01:49:42 +00:00
|
|
|
|
2019-10-09 14:19:48 +02:00
|
|
|
For more information about this error, try `rustc --explain E0573`.
|