comp.lang.ada
 help / color / mirror / Atom feed
* Generic private type declaration
@ 2016-11-25 17:36 Alejandro R. Mosteo
  2016-11-25 19:17 ` Dmitry A. Kazakov
                   ` (4 more replies)
  0 siblings, 5 replies; 14+ messages in thread
From: Alejandro R. Mosteo @ 2016-11-25 17:36 UTC (permalink / raw)


Hello,

I need some eyes on this error because I'm missing something basic. When 
compiling this code:

procedure B001_Tagged is

    generic
       type X is private;
    package Untagged is

       type Y is new X;

    end Untagged;

    package Ok is new Untagged (Integer);

    type Void is tagged null record;

    package Err is new Untagged (Void); --  Error here

begin
    null;
end B001_Tagged;

I get in both gnat 4.9.3 and gpl2016 the following error:

b001_tagged.adb:15:04: instantiation error at line 7
b001_tagged.adb:15:04: type derived from tagged type must have extension
gnatmake: "b001_tagged.adb" compilation error

I would expect that the view inside the generic package is untagged and 
so the type renaming in line 7 should be correct? Or I'm floundering 
with the generic parameter declaration?

Thanks,
Alex.

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2016-11-29 23:48 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-25 17:36 Generic private type declaration Alejandro R. Mosteo
2016-11-25 19:17 ` Dmitry A. Kazakov
2016-11-28 14:54   ` Alejandro R. Mosteo
2016-11-25 19:18 ` AdaMagica
2016-11-28 14:57   ` Alejandro R. Mosteo
2016-11-25 19:38 ` G.B.
2016-11-26  8:45 ` Jacob Sparre Andersen
2016-11-26 19:18   ` Tero Koskinen
2016-11-28 15:05     ` Alejandro R. Mosteo
2016-11-28 21:32       ` Randy Brukardt
2016-11-29 11:12         ` Alejandro R. Mosteo
2016-11-29 11:42         ` Dmitry A. Kazakov
2016-11-29 23:48           ` Randy Brukardt
2016-11-28 23:25 ` Robert Eachus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox