Instantly share code, notes, and snippets.

Embed
What would you like to do?
fn foo() -> SomeTrait;
fn bar() -> SomeTrait;
fn baz(x: Vec<SomeTrait>) { .. }
fn main() {
baz(vec![foo(), bar()])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment