blob: c1ca827e7b1df8e7601cdd5174fe935fa6dd4856 [file] [log] [blame]
/*
:name: cond_op
:description: ?: operator test
:should_fail: 0
:tags: 11.4.11
*/
module top();
int a = 12;
int b = 5;
int c;
initial begin
c = (a > b) ? 11 : 13;
end
endmodule