6.9. Type Qualification 🐨 - JulTob/Ada GitHub Wiki

In some situations an expressions' or values' type can be ambiguous.


type fruit is (Banana, Apple, Orange);
type color is (Red, Green, Orange);
---------------------
for index in red .. color'Orange loop --...--
---------------------
Put( color'image(color'(orange)) );