We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
the following code ices on nightly:
#![feature(const_fn, associated_consts)] trait Trait { const N: usize; } impl Trait { const fn n() -> usize { Self::N } }
It should give an error instead noting that you can't do Self::N.
Self::N