You can't assign a global list pointer to a local instance. Are you trying to copy the global to local? Are you just wanting a local access pointer to a global list? Tell us what you are trying to accomplish with the above code.
You can't assign something to the address of a variable. The following code: &myVariable = whatever;
basically means "Move myVariable to the 'whatever' memory slot".
Also, 'global->' means nothing unless 'global' is a pointer to an object (which would be very oddly named, mind you).
We can't really help you without more information on what you're trying to accomplish.
if i wasnt clear in my first post i apologize, heres is what i want to do - i want the locallist to pointer the globallist, ill be updating the locallist either by erasing or inserting into the list where i also want the global list to be modified when the locallist is