The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910 class TestCase::LINER { static method line : int () { my $line : int = __LINE__; unless ($line == 3) { return 0; } return 1; }}
class TestCase::LINER {
static method line : int () {
my $line : int = __LINE__;
unless ($line == 3) {
return 0;
}
return 1;