aboutsummaryrefslogtreecommitdiffstats
path: root/tests/simple/lesser_size_cast.sv
blob: 8c0bc98144227992135224010084e6db8aa80a0f (plain)
1
2
3
4
5
6
7
module top (
    input signed [1:0] a,
    input signed [2:0] b,
    output signed [4:0] c
);
    assign c = 2'(a) * b;
endmodule