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[E0323]: item `bar` is an associated const, which doesn't match its trait `<FooConstForMethod as Foo>`
--> $DIR/impl-wrong-item-for-trait.rs
|
XX | const bar: u64 = 1;
| ^^^^^^^^^^^^^^^^^^^ does not match trait
as per this review from @nikomatsakis, it would make sense to change it so that the output is (at least in this case):
error[E0323]: item `bar` is an associated const, which doesn't match its trait `Foo`