2021-05-19 19:23:32 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/different-fn.rs:10:5
|
|
|
|
|
|
|
|
|
LL | [0; size_of::<Foo<T>>()]
|
2024-09-22 17:10:12 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ expected `size_of::<T>()`, found `0`
|
2021-05-19 19:23:32 +00:00
|
|
|
|
|
2022-08-12 02:00:37 +00:00
|
|
|
= note: expected constant `size_of::<T>()`
|
2024-09-22 17:10:12 +00:00
|
|
|
found constant `0`
|
2021-05-19 19:23:32 +00:00
|
|
|
|
2020-11-07 11:37:28 +00:00
|
|
|
error: unconstrained generic constant
|
|
|
|
--> $DIR/different-fn.rs:10:9
|
|
|
|
|
|
|
|
|
LL | [0; size_of::<Foo<T>>()]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2024-03-21 00:03:59 +00:00
|
|
|
help: try adding a `where` bound
|
|
|
|
|
|
|
|
|
LL | fn test<T>() -> [u8; size_of::<T>()] where [(); size_of::<Foo<T>>()]: {
|
|
|
|
| ++++++++++++++++++++++++++++++++
|
2020-11-07 11:37:28 +00:00
|
|
|
|
2021-05-19 19:23:32 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2020-11-07 11:37:28 +00:00
|
|
|
|
2021-05-19 19:23:32 +00:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|