Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
5116133e9d8aa43e4097998303280bdb37ca7200
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-5
/
5.12-attributes-operator.sv
blob: 90cf82cef6ae8926bb5f0cb6512b1b10e655d718 [
file
] [
log
] [
blame
]
/*
:name: attributes-operator
:description: Assing attributes to an operator
:should_fail: 0
:tags: 5.12
*/
module
top
();
logic
[
7
:
0
]
a
;
logic
[
7
:
0
]
b
;
logic
[
7
:
0
]
c
;
initial
begin
;
a
=
b
+
(*
mode
=
"cla"
*)
c
;
end
endmodule