aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug057/tb.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug057/tb.vhdl')
-rw-r--r--testsuite/gna/bug057/tb.vhdl21
1 files changed, 21 insertions, 0 deletions
diff --git a/testsuite/gna/bug057/tb.vhdl b/testsuite/gna/bug057/tb.vhdl
new file mode 100644
index 000000000..cc4b8f9f3
--- /dev/null
+++ b/testsuite/gna/bug057/tb.vhdl
@@ -0,0 +1,21 @@
+package pkg1 is
+ generic (c : natural);
+ generic map (c => 5);
+
+ function f return natural;
+end pkg1;
+
+package body pkg1 is
+ function f return natural is
+ begin
+ return c;
+ end f;
+end pkg1;
+
+entity tb is
+end tb;
+
+architecture behav of tb is
+begin
+ assert work.pkg1.f = 5;
+end behav;