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 panics the compiler:
pub struct SharedRange<Ix, OnSet> { pub data: f32, } trait HasCtx { type Ctx; } trait Callback0 {} trait Foo<Ix, OnSet> = where OnSet: Callback0; impl<Ix, OnSet> HasCtx for SharedRange<Ix, OnSet> { type Ctx = Foo<Ix, OnSet>; }