Created
May 20, 2018 19:32
-
-
Save jarcode-foss/706f89d52700b5dd17e0a7499849303e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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