summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/controlled5_pkg.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gnat.dg/controlled5_pkg.adb')
-rw-r--r--gcc/testsuite/gnat.dg/controlled5_pkg.adb18
1 files changed, 18 insertions, 0 deletions
diff --git a/gcc/testsuite/gnat.dg/controlled5_pkg.adb b/gcc/testsuite/gnat.dg/controlled5_pkg.adb
new file mode 100644
index 000000000..828f9efec
--- /dev/null
+++ b/gcc/testsuite/gnat.dg/controlled5_pkg.adb
@@ -0,0 +1,18 @@
+with Ada.Tags;
+
+package body Controlled5_Pkg is
+
+ type Child is new Root with null record;
+
+ function Dummy (I : Integer) return Root'Class is
+ A1 : T_Root_Class := new Child;
+ My_Var : Root'Class := A1.all;
+ begin
+ if I = 0 then
+ return My_Var;
+ else
+ return Dummy (I - 1);
+ end if;
+ end Dummy;
+
+end Controlled5_Pkg;