A trait method was declared const.

Erroneous code example:

#![feature(const_fn)]

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

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