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