From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14472 invoked by alias); 20 Jun 2004 11:25:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 14462 invoked by uid 48); 20 Jun 2004 11:24:59 -0000 Date: Sun, 20 Jun 2004 11:25:00 -0000 From: "ludovic dot brenta at insalien dot org" To: gcc-bugs@gcc.gnu.org Message-ID: <20040620112457.16094.ludovic.brenta@insalien.org> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug ada/16094] New: Illegal program not detected, RM 3.4.1(5) X-Bugzilla-Reason: CC X-SW-Source: 2004-06/txt/msg02503.txt.bz2 List-Id: -- RM 3.4.1(5) -- Class-wide types have no primitive subprograms of their own. -- (see also AC-00086 at: -- http://www.ada-auth.org/cgi-bin/cvsweb.cgi/AIs/AC-00086.TXT ) package Test_248678 is generic type T1(<>) is private; with function "=" (Left, Right : T1) return Boolean is <>; package pak1 is end pak1; package pak2 is type T2 is abstract tagged null record; package new_pak1 is new pak1 (T2'Class); --ERROR: no matching "=" end pak2; end Test_248678; I expect error messages like: test_248678.ads:14:07: missing actual for instantiation of ""="" test_248678.ads:14:07: instantiation abandoned gnatmake: "test_248678.ads" compilation error Instead the compiler remains silent. -- Summary: Illegal program not detected, RM 3.4.1(5) Product: gcc Version: 3.4.0 Status: UNCONFIRMED Severity: normal Priority: P2 Component: ada AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: ludovic dot brenta at insalien dot org CC: gcc-bugs at gcc dot gnu dot org http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16094