iverilog/ivtest/ivltests/sv_lval_concat_string_fail2.v

13 lines
163 B
Verilog

// Check that strings can not be used in single operand l-value concatenations.
module test;
int x;
string s;
initial begin
{s} = x;
end
endmodule