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
error[E0428]: a type named `Bar` has already been defined in this module
--> src/test/compile-fail/E0428.rs:12:1
|
11 | struct Bar;
| ----------- previous definition of `Bar` here
12 | struct Bar; //~ ERROR E0428
| ^^^^^^^^^^^
To:
error[E0428]: a type named `Bar` has already been defined in this module
--> src/test/compile-fail/E0428.rs:12:1
|
11 | struct Bar;
| ----------- previous definition of `Bar` here
12 | struct Bar; //~ ERROR E0428
| ^^^^^^^^^^^ already defined
The text was updated successfully, but these errors were encountered:
From: src/test/compile-fail/E0428.rs
E0428 needs a span_label, updating it from:
To:
The text was updated successfully, but these errors were encountered: