From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.7 required=5.0 tests=BAYES_00,INVALID_DATE, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!rutgers!ames!ucbcad!ucbvax!nosc-tecr.UUCP!contr47 From: contr47@nosc-tecr.UUCP ("CONTR47") Newsgroups: comp.lang.ada Subject: A compilation problem with Dec compiler? Message-ID: <8612062242.AA02621@ucbvax.Berkeley.EDU> Date: Sun, 16-Nov-86 15:46:00 EST Article-I.D.: ucbvax.8612062242.AA02621 Posted: Sun Nov 16 15:46:00 1986 Date-Received: Sun, 7-Dec-86 04:10:48 EST Sender: daemon@ucbvax.BERKELEY.EDU Reply-To: "CONTR47" Organization: The ARPA Internet List-Id: Here is a compilation problem reported by Greg Saunders. The following is a simplied instance of the problem. The following code compiled ok on Data General and NYU Ada/Ed-C. Note it is a warning, not a hard error but I suspect the result is useless anyway. Any idea what is going on here? Should it be added to validation suite? regards, sam harbaugh --------------------- A 16-Nov-1986 12:38:53 VAX Ada V1.2-15 Page 1 01 16-Nov-1986 12:38:37 DRB2:[CONTR47]GREGTEST.ADA;6 (1) 1 Package A is 2 procedure B; 3 generic 4 type Y is digits <>; 5 Package D is 6 z:integer; 7 end D; 8 type Q is digits 6; 9 Package DD is new D(Q); ..........1 %ADAC-W-INSTINCOMPL, (1) Instantiation incomplete because template for generic package declaration D at line 3 is not available 10 end A; %ADAC-I-CL_ADDED, Package specification A added to library Replaces older version compiled 16-Nov-1986 12:36 ------