aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue107/testpkg.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue107/testpkg.vhdl')
-rw-r--r--testsuite/gna/issue107/testpkg.vhdl16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/gna/issue107/testpkg.vhdl b/testsuite/gna/issue107/testpkg.vhdl
new file mode 100644
index 000000000..917b08976
--- /dev/null
+++ b/testsuite/gna/issue107/testpkg.vhdl
@@ -0,0 +1,16 @@
+package TestPkg is
+
+ generic (
+ G_TEST : positive := 8
+ );
+end package TestPkg;
+
+
+package body TestPkg is
+
+ procedure TestReport is
+ begin
+ report "G_TEST :" & to_string(G_TEST);
+ end procedure;
+
+end package body;