You have to understand that an rvalue reference to something does not magically move the value. All it does is to make it possible to take a non const reference to temporary objects.
This reference is in your example not different from a normal reference, because you don't have any temporaries here. You are the one who has to make the "move" happen.
E.g. if you define that your int is empty when it has a value of 0, and you write a function that takes an rvalue reference, consumes it and sets the passed value to 0, then you "moved" the previous value out of your int. After calling this function, it will contain 0. But that's because you defined it like that.
Now, for ints this does not make much sense, but imagine you are handling a pointer to a big piece of memory.
void main()... – Aditya Kumar Jul 28 '11 at 20:21