reassign 278831 gnat-4.6
found 278831 4.6.1-5
thanks
I suggest providing a body to avoid any other illegality.
package Test_128 is
package inner is
private
type T1;
end inner;
type T1_ptr is access inner.T1; -- line 9 ERROR: gnat mistakenly accepts
end Test_128;
package body test_128 is
package body inner is
type T1 is new Integer;
end inner;
end Test_128;