summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/prot2_pkg2.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gnat.dg/prot2_pkg2.adb')
-rw-r--r--gcc/testsuite/gnat.dg/prot2_pkg2.adb23
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc/testsuite/gnat.dg/prot2_pkg2.adb b/gcc/testsuite/gnat.dg/prot2_pkg2.adb
new file mode 100644
index 000000000..503cce73d
--- /dev/null
+++ b/gcc/testsuite/gnat.dg/prot2_pkg2.adb
@@ -0,0 +1,23 @@
+with Unchecked_Deallocation;
+
+package body Prot2_Pkg2 is
+
+ protected type Rec is
+ private
+ M : T;
+ end Rec;
+
+ protected body Rec is end;
+
+ procedure Create (B : out Id) is
+ begin
+ B := new Rec;
+ end;
+
+ procedure Delete (B : in out Id) is
+ procedure Free is new Unchecked_Deallocation(Object => Rec, Name => Id);
+ begin
+ Free (B);
+ end;
+
+end Prot2_Pkg2;