Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
1b0062119887da734c600d091a65c037f5fafa7d
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-5
/
5.12-attributes-conditional.sv
blob: b1edd7116d83991e2e71a054f80af55048760db1 [
file
] [
log
] [
blame
]
/*
:name: attributes-conditional
:description: Assing attributes to a conditional operator
:should_fail: 0
:tags: 5.12
*/
module
top
();
bit a
,
b
,
c
,
d
;
initial
begin
;
a
=
b
?
(*
no_glitch
*)
c
:
d
;
end
endmodule