Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
Add issue-65673 (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor authored and Dylan-DPC committed Oct 22, 2019
1 parent 84cb8c6 commit 1e7f3e3
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions ices/65673.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
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>;
}

fn main() {}

0 comments on commit 1e7f3e3

Please sign in to comment.