Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-11
/
11.4.11--cond_op.sv
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