Dynamic Dispatching in Ada with Access Types
问题 I am trying to create a package that has Dynamic dispatching using access types. I have achieved Dynamic Dispatching using Class Types using This Q/A as a guide. I keep getting a compilation error that says: cannot call abstract subprogram. This makes me think that the compiler either doesnt recognize the specialized subprogram, or doesnt recognize the type as a specialized type. But both seem right to me... I dont get it. main.2.ada with Ada.Text_IO; with Animal.Cat; procedure Main is Tabby