aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1724/const_test.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue1724/const_test.vhdl')
-rw-r--r--testsuite/gna/issue1724/const_test.vhdl16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/gna/issue1724/const_test.vhdl b/testsuite/gna/issue1724/const_test.vhdl
new file mode 100644
index 000000000..0a18e5b01
--- /dev/null
+++ b/testsuite/gna/issue1724/const_test.vhdl
@@ -0,0 +1,16 @@
+library ieee;
+use ieee.std_logic_1164.all;
+use ieee.numeric_std.all;
+
+entity const_test is
+ generic (
+ addr_width : positive := 5
+ );
+ port (
+ clk : in std_logic
+ );
+end entity;
+
+architecture rtl of const_test is
+begin
+end architecture rtl;