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[E0438]: const `BAR` is not a member of trait `Foo`
--> src/test/compile-fail/E0438.rs:16:5
|
16 | const BAR: bool = true; //~ ERROR E0438
| ^^^^^^^^^^^^^^^^^^^^^^^
To:
error[E0438]: const `BAR` is not a member of trait `Foo`
--> src/test/compile-fail/E0438.rs:16:5
|
16 | const BAR: bool = true; //~ ERROR E0438
| ^^^^^^^^^^^^^^^^^^^^^^^ not a member of trait `Foo`
The text was updated successfully, but these errors were encountered:
From: src/test/compile-fail/E0438.rs
E0438 needs a span_label, updating it from:
To:
The text was updated successfully, but these errors were encountered: