| 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
| fn foo() -> SomeTrait; | |
| fn bar() -> SomeTrait; | |
| fn baz(x: Vec<SomeTrait>) { .. } | |
| fn main() { | |
| baz(vec![foo(), bar()]) | |
| } |