What's happening with the error message is that it's seeing the $g and determining that it's not a valid pattern, so it assumes the pattern is missing. Then it's determining that there is no statement delimiter (newline or semicolon) between the statements, so it's saying it expected and end-of-input. Then it's finding the $g at the beginning of the next expression, so it's warning that it's possibly useless. Effectively it's parsing it like:
1=><missing>$g
I'm happy to change the error message to whatever would make that more clear.
The second newline is in there because it looked weird having errors hang off the end without another line indicating where the input ended, but I can remove that.