#Perl 5, 3 bytes
Perl 5, 3 bytes
y=> => is the "fat comma," which quotes the bareword on the left. So this is equivalent to
"y", which does nothing.
Without the fat comma, y is the transliteration operator, which is invalid without three of the same character repeated later.
The fat comma alone is also invalid, as is = and > alone.