summaryrefslogtreecommitdiff
path: root/tests/hana/test_intermout_always_comb_4_test.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hana/test_intermout_always_comb_4_test.v')
-rw-r--r--tests/hana/test_intermout_always_comb_4_test.v9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/hana/test_intermout_always_comb_4_test.v b/tests/hana/test_intermout_always_comb_4_test.v
deleted file mode 100644
index b0a94f29..00000000
--- a/tests/hana/test_intermout_always_comb_4_test.v
+++ /dev/null
@@ -1,9 +0,0 @@
-module test(a, b, c);
-input b, c;
-output reg a;
-
-always @(b or c) begin
-a = b;
-a = c;
-end
-endmodule