aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue326/foo.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue326/foo.vhdl')
-rw-r--r--testsuite/gna/issue326/foo.vhdl11
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/gna/issue326/foo.vhdl b/testsuite/gna/issue326/foo.vhdl
new file mode 100644
index 000000000..abf23402e
--- /dev/null
+++ b/testsuite/gna/issue326/foo.vhdl
@@ -0,0 +1,11 @@
+entity foo is
+ port(a, b: out bit);
+end entity foo;
+architecture bug of foo is
+begin
+ a <= '0', '1' after 1 ns, '0' after 2 ns, '1' after 3 ns;
+ process(a)
+ begin
+ b <= not a;
+ end process;
+end architecture bug;