blob: ea70d4a69249e4a1e7fb48d3a03c8084f27359c5 [file] [log] [blame]
-- { dg-do compile }
-- { dg-options "-gnatc" }
package Private1.Sub is
package Nested is
type T is limited private;
function "=" (X, Y : T) return Boolean;
private
type T is new Private1.T;
end Nested;
end Private1.Sub;