blob: b1bd9a40b7c22910dae982b033b7bd7c0201863c [file] [log] [blame]
-- { dg-do compile }
-- { dg-options "-gnatc" }
package Task1 is
type Cable_Task_1 (C : Boolean) is limited private;
type Cable_Rec is limited record
Tsk_1 : Cable_Task_1 (C => False);
end record;
private
task type Cable_Task_1 (C : Boolean) is
end Cable_Task_1;
end Task1;