From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

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;
}
}