aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2/repro.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue2/repro.vhdl')
-rw-r--r--testsuite/gna/issue2/repro.vhdl15
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/gna/issue2/repro.vhdl b/testsuite/gna/issue2/repro.vhdl
new file mode 100644
index 000000000..e58e894bf
--- /dev/null
+++ b/testsuite/gna/issue2/repro.vhdl
@@ -0,0 +1,15 @@
+entity repro is
+ port (
+ foo: in boolean
+ );
+end entity;
+
+architecture foo of repro is
+ signal foo_int: boolean;
+begin
+FUMBLE:
+ entity work.repro
+ port map (
+ foo => foo_int
+ );
+end architecture;