Syntax highlighting is broken, as in example, using // operator, if the string on its right side contains a slash.
my $myvar = $othervar // 'empty';
my $what = 'no'; # Highlighter still OK
my $myvar = $othervar // 'empty/ornot';
my $what = 'no'; # Highlighter broken
It’s possible to work around this problem by escaping the slash:
my $myvar = $othervar // 'empty\/ornot';
my $what = 'no'; # Highlighter OK
but fact remains syntax highlighter is broken in this case.