Skip to content

Instantly share code, notes, and snippets.

@rust-play
Created October 18, 2019 01:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rust-play/deddd4ac692660a5ad76ba5fe222b0fe to your computer and use it in GitHub Desktop.
Save rust-play/deddd4ac692660a5ad76ba5fe222b0fe to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
trait T {
fn foo(_: usize, _: usize, _: usize) {}
}
fn main() {
T::foo(1, 3, 4, 5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment