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