summaryrefslogtreecommitdiff
path: root/tests/hana/test_intermout_always_comb_4_test.v
blob: b0a94f299d3bc5a97ea468108d261a4357260672 (plain)
1
2
3
4
5
6
7
8
9
module test(a, b, c);
input b, c;
output reg a;

always @(b or c) begin
a = b;
a = c;
end
endmodule