aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/emptyrec.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug0100/emptyrec.vhdl')
-rw-r--r--testsuite/gna/bug0100/emptyrec.vhdl11
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/gna/bug0100/emptyrec.vhdl b/testsuite/gna/bug0100/emptyrec.vhdl
new file mode 100644
index 000000000..7c771fb28
--- /dev/null
+++ b/testsuite/gna/bug0100/emptyrec.vhdl
@@ -0,0 +1,11 @@
+entity emptyrec is
+ port (
+ clk_i : in bit
+ );
+end emptyrec;
+
+architecture arch of emptyrec is
+ type t_counter_config is record
+ end record;
+begin
+end arch;