Skip to content

Instantly share code, notes, and snippets.

@jarcode-foss
Created May 20, 2018 19:32
Show Gist options
  • Save jarcode-foss/706f89d52700b5dd17e0a7499849303e to your computer and use it in GitHub Desktop.
Save jarcode-foss/706f89d52700b5dd17e0a7499849303e to your computer and use it in GitHub Desktop.
fn foo<T: Sized>() {
const foo: usize = mem::size_of::<T>() * 4;
}
fn bar<T: Sized>() {
let foo: usize = mem::size_of::<T>() * 4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment