Inherent associated types were part of RFC 195 but are not yet implemented. See the tracking issue for the status of this implementation.

Erroneous code example:

struct Foo;

impl Foo {
    type Bar = isize; // error!
}