A trait method was declared const.
Erroneous code example:
trait Foo { const fn bar() -> u32; // error! }
Trait methods cannot be declared const by design. For more information, see RFC 911.
const
Back to list of error codes