aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/ghdl-issues/xfail1/test.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/ghdl-issues/xfail1/test.vhdl')
-rw-r--r--testsuite/ghdl-issues/xfail1/test.vhdl13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/ghdl-issues/xfail1/test.vhdl b/testsuite/ghdl-issues/xfail1/test.vhdl
new file mode 100644
index 0000000..f9f8ed5
--- /dev/null
+++ b/testsuite/ghdl-issues/xfail1/test.vhdl
@@ -0,0 +1,13 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity test is
+ port(
+ clk : in std_logic
+ );
+end entity test;
+
+architecture behaviour of test is
+begin
+ clk <= '1';
+end architecture behaviour;