Skip Menu |

This queue is for tickets about the everywhere CPAN distribution.

Report information
The Basics
Id: 83604
Status: new
Priority: 0/
Queue: everywhere

People
Owner: Nobody in particular
Requestors: perl [...] toby.ink
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: /^\s*package\s+.+\s*;\s*$/
This regular expression doesn't match any of the following valid package declarations: { package Foo1; sub xyz { 123 } } package Foo2 { sub xyz { 123 } } package Foo3; sub xyz { 123 } package # Foo4; sub xyz { 123 }