2020-02-11 01:19:21 -06:00
|
|
|
error[E0379]: functions in traits cannot be declared const
|
2019-04-17 14:00:35 -05:00
|
|
|
--> $DIR/issue-54954.rs:7:5
|
|
|
|
|
|
|
|
|
LL | const fn const_val<T: Sized>() -> usize {
|
2020-02-11 01:19:21 -06:00
|
|
|
| ^^^^^ functions in traits cannot be const
|
2019-04-17 14:00:35 -05:00
|
|
|
|
2019-10-29 19:28:39 -05:00
|
|
|
error[E0283]: type annotations needed
|
2019-04-17 14:00:35 -05:00
|
|
|
--> $DIR/issue-54954.rs:3:24
|
|
|
|
|
|
|
|
|
LL | const ARR_LEN: usize = Tt::const_val::<[i8; 123]>();
|
2019-12-10 16:15:38 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type
|
2019-09-24 13:05:49 -05:00
|
|
|
...
|
|
|
|
LL | const fn const_val<T: Sized>() -> usize {
|
2020-04-06 00:15:06 -05:00
|
|
|
| - required by this bound in `Tt::const_val`
|
2019-10-29 19:28:39 -05:00
|
|
|
|
|
2020-04-04 21:47:50 -05:00
|
|
|
= note: cannot satisfy `_: Tt`
|
2019-09-24 13:05:49 -05:00
|
|
|
|
2020-04-11 23:16:38 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2019-04-17 14:00:35 -05:00
|
|
|
|
2020-04-11 23:16:38 -05:00
|
|
|
Some errors have detailed explanations: E0283, E0379.
|
|
|
|
For more information about an error, try `rustc --explain E0283`.
|