comp.lang.ada
 help / color / mirror / Atom feed
* Dot notation in Ada 2005
@ 2006-05-19 10:14 Philippe Tarroux
  2006-05-20 12:16 ` Martin Carlisle
  0 siblings, 1 reply; 7+ messages in thread
From: Philippe Tarroux @ 2006-05-19 10:14 UTC (permalink / raw)


I am testing some features of the new Ada 2005 version. Here a simple 
problem that seems to me rather a gnat bug than a limitation of the 
norm. With the code:

------
package Objs is

  type Point is tagged null record;

end Objs;

------
package Objs.ext_objs is

  type New_Point is new Point With private;
  function X (P : New_Point) return Integer;

private
  type New_Point is new Point with record
     X1, Y1 : Integer := 0;
  end record;
end Objs.ext_objs;

------
package body Objs.Ext_Objs is

  function X (P : New_Point) return Integer is
  begin
     return P.X1;
  end X;

  procedure Test ( A : Integer; Y : Integer) is
  begin
     null;
  end Test;

  procedure Draw (A : Integer; P : New_Point) is
  begin
     Test (A, P.X);  -- PROBLEM HERE
  end Draw;

end Objs.Ext_Objs;

i get a compilation error ("no selector X for private type P") when P.X 
is not the first argument of the function Test.

It seems to me a rather strange behavior.

Some explanation?

Philippe Tarroux




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

end of thread, other threads:[~2006-05-23 15:02 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-05-19 10:14 Dot notation in Ada 2005 Philippe Tarroux
2006-05-20 12:16 ` Martin Carlisle
2006-05-22  6:50   ` Philippe Tarroux
2006-05-22  8:19     ` Marc Enzmann
2006-05-22 10:33       ` christoph.grein
2006-05-22 11:09         ` Marc Enzmann
2006-05-23 15:02     ` Martin Carlisle

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