The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

class TestCase::LINEN {
static method line : int () {
my $line : int = __LINE__;
unless ($line == 3) {
return 0;
}
return 1;
}
}