task xyz(output op, output bit [width-1:0] write_data []);
I have my task xyz definiton in an interface. I want to call this task from my testbench.sv
So, how should I call it? I am trying to call it in this manner but getting an error:
xyz(1'b0, bit[width-1:0] write_data [])
What's the correct way of passing an unpacked array of packed array as task arguments?