Skip to content

Instantly share code, notes, and snippets.

@brson
Created November 20, 2012 00:20
Show Gist options
  • Save brson/4115103 to your computer and use it in GitHub Desktop.
Save brson/4115103 to your computer and use it in GitHub Desktop.
trait A: Num {
}
trait B: Num {
}
struct Foo { ... }
// Who implements Num?
impl Foo: A { }
impl Foo: B { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment