aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendAda/Support/element_copy.ads
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendAda/Support/element_copy.ads')
-rw-r--r--test/FrontendAda/Support/element_copy.ads8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/FrontendAda/Support/element_copy.ads b/test/FrontendAda/Support/element_copy.ads
deleted file mode 100644
index 52c6e49..0000000
--- a/test/FrontendAda/Support/element_copy.ads
+++ /dev/null
@@ -1,8 +0,0 @@
-package Element_Copy is
- type SmallInt is range 1 .. 4;
- type SmallStr is array (SmallInt range <>) of Character;
- type VariableSizedField (D : SmallInt := 2) is record
- S : SmallStr (1 .. D) := "Hi";
- end record;
- function F return VariableSizedField;
-end;