Error code E0379

A trait method was declared const.

Erroneous code example:

trait Foo {
    const fn bar() -> u32; // error!
}
Run

Trait methods cannot be declared const by design. For more information, see RFC 911.

Back to list of error codes