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