Home | History | Annotate | Line # | Download | only in enums_overload
      1 --  Copyright 2021-2024 Free Software Foundation, Inc.
      2 --
      3 --  This program is free software; you can redistribute it and/or modify
      4 --  it under the terms of the GNU General Public License as published by
      5 --  the Free Software Foundation; either version 3 of the License, or
      6 --  (at your option) any later version.
      7 --
      8 --  This program is distributed in the hope that it will be useful,
      9 --  but WITHOUT ANY WARRANTY; without even the implied warranty of
     10 --  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     11 --  GNU General Public License for more details.
     12 --
     13 --  You should have received a copy of the GNU General Public License
     14 --  along with this program.  If not, see <http://www.gnu.org/licenses/>.
     15 
     16 package body Enums_Overload is
     17 
     18    subtype Reddish is Color range Red .. Yellow;
     19 
     20    procedure Test_Enums_Overload is
     21       X: Reddish := Orange;
     22       Y: Traffic_Signal := Yellow;
     23    begin
     24       --gdb: next
     25       X := Orange;
     26       --gdb: next
     27       Y := Yellow;
     28       --gdb: ptype x range red .. yellow
     29       --gdb: set x := red
     30       --gdb: print x red
     31       --gdb: print enums_overload.reddish'(red) red
     32       --gdb: set y := red
     33       --gdb: print y red
     34       --gdb: cont
     35       null; -- STOP
     36    end Test_Enums_Overload;
     37 
     38 end Enums_Overload;
     39