You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.
error[E0428]: a type named `char_type` has already been defined in this module
--> src\lib.rs:64521:5
|
64519 | pub type char_type = u8;
| ------------------------ previous definition of `char_type` here
64520 | pub type int_type = u32;
64521 | pub type char_type = u16;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ `char_type` already defined
error[E0428]: a type named `int_type` has already been defined in this module
--> src\lib.rs:64522:5
|
64520 | pub type int_type = u32;
| ------------------------ previous definition of `int_type` here
64521 | pub type char_type = u16;
64522 | pub type int_type = u16;
| ^^^^^^^^^^^^^^^^^^^^^^^^ `int_type` already defined
The generated code is:
The text was updated successfully, but these errors were encountered: