blob: 49446b99ce1f6812211a825879f98d7e9be2980f [file] [log] [blame]
/*
:name: unary_op_dec
:description: -- operator test
:should_fail: 0
:tags: 11.4.2
*/
module top();
int a = 12;
initial begin
a--;
end
endmodule