summaryrefslogtreecommitdiffstats
path: root/src/test/ui/moves/move-arg.rs
blob: 5942cd89fd9eb05b32fe61997a5d45a5f935b401 (plain)
1
2
3
4
5
// run-pass

fn test(foo: isize) { assert_eq!(foo, 10); }

pub fn main() { let x = 10; test(x); }