Skip to content

Instantly share code, notes, and snippets.

@Skepfyr
Created May 20, 2018 23:14
Show Gist options
  • Save Skepfyr/a09909c52a1b52b46b7c955c102dcdfb to your computer and use it in GitHub Desktop.
Save Skepfyr/a09909c52a1b52b46b7c955c102dcdfb to your computer and use it in GitHub Desktop.
Minimal test case fo clippy compile errors
trait Foo {
type Bar;
}
struct Baz<T: Foo> {
bar: T::Bar,
}
fn take<T: Foo>(baz: Baz<T>) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment