blob: ff0046f8ceff7c73d148ab56526dc381b173e7ef [file] [log] [blame]
-- { dg-do compile }
package Access2 is
type Priv;
type Inc is access Priv;
type Priv is access Inc;
C : constant Priv := new Inc;
end Access2;