The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more
12345678910 class CompileError::Interface::HasImplNotFound { use TestCase::PointInterface; use TestCase::PointForTest; static method main : void () { my $pointable : TestCase::PointInterface = TestCase::PointForTest->new_xy(1, 2); can $pointable->not_found; }}
class CompileError::Interface::HasImplNotFound {
use TestCase::PointInterface;
use TestCase::PointForTest;
static method main : void () {
my $pointable : TestCase::PointInterface = TestCase::PointForTest->new_xy(1, 2);
can $pointable->not_found;
}