2020-02-11 08:19:21 +01:00
|
|
|
error[E0379]: functions in traits cannot be declared const
|
2021-05-07 18:56:16 +02:00
|
|
|
--> $DIR/issue-54954.rs:5:5
|
2019-04-17 12:00:35 -07:00
|
|
|
|
|
|
|
|
LL | const fn const_val<T: Sized>() -> usize {
|
2020-02-11 08:19:21 +01:00
|
|
|
| ^^^^^ functions in traits cannot be const
|
2019-04-17 12:00:35 -07:00
|
|
|
|
2022-06-12 17:46:57 +02:00
|
|
|
error[E0790]: cannot call associated function on trait without specifying the corresponding `impl` type
|
2021-05-07 18:56:16 +02:00
|
|
|
--> $DIR/issue-54954.rs:1:24
|
2019-04-17 12:00:35 -07:00
|
|
|
|
|
2022-06-12 17:46:57 +02:00
|
|
|
LL | const ARR_LEN: usize = Tt::const_val::<[i8; 123]>();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot call associated function of trait
|
|
|
|
...
|
|
|
|
LL | / const fn const_val<T: Sized>() -> usize {
|
|
|
|
LL | |
|
|
|
|
LL | | core::mem::size_of::<T>()
|
|
|
|
LL | | }
|
|
|
|
| |_____- `Tt::const_val` defined here
|
2019-09-24 11:05:49 -07:00
|
|
|
|
2022-11-15 12:06:20 +01:00
|
|
|
note: erroneous constant used
|
2022-02-16 10:56:01 +01:00
|
|
|
--> $DIR/issue-54954.rs:11:15
|
|
|
|
|
|
|
|
|
LL | fn f(z: [f32; ARR_LEN]) -> [f32; ARR_LEN] {
|
2022-11-15 12:06:20 +01:00
|
|
|
| ^^^^^^^
|
2022-02-16 10:56:01 +01:00
|
|
|
|
2022-11-15 12:06:20 +01:00
|
|
|
note: erroneous constant used
|
2022-02-16 10:56:01 +01:00
|
|
|
--> $DIR/issue-54954.rs:11:34
|
|
|
|
|
|
|
|
|
LL | fn f(z: [f32; ARR_LEN]) -> [f32; ARR_LEN] {
|
2022-11-15 12:06:20 +01:00
|
|
|
| ^^^^^^^
|
2022-02-16 10:56:01 +01:00
|
|
|
|
2022-11-15 12:06:20 +01:00
|
|
|
error: aborting due to 2 previous errors
|
2019-04-17 12:00:35 -07:00
|
|
|
|
2022-11-15 12:06:20 +01:00
|
|
|
Some errors have detailed explanations: E0379, E0790.
|
|
|
|
For more information about an error, try `rustc --explain E0379`.
|