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
E0424 needs a span_label, a note, and an updated title, changing it from:
error[E0424]: `self` is not available in a static method. Maybe a `self` argument is missing?
--> src/test/compile-fail/E0424.rs:17:9
|
17 | self.bar(); //~ ERROR E0424
| ^^^^
To:
error[E0424]: `self` is not available in a static method
--> src/test/compile-fail/E0424.rs:17:9
|
17 | self.bar(); //~ ERROR E0424
| ^^^^ not available in static method
|
= note: maybe a `self` argument is missing?
The text was updated successfully, but these errors were encountered:
From: src/test/compile-fail/E0424.rs
E0424 needs a span_label, a note, and an updated title, changing it from:
To:
The text was updated successfully, but these errors were encountered: