blob: 5942cd89fd9eb05b32fe61997a5d45a5f935b401 [file] [log] [blame]
// run-pass
fn test(foo: isize) { assert_eq!(foo, 10); }
pub fn main() { let x = 10; test(x); }