iverilog/ivtest/ivltests/sv_lval_concat_string_fail1.v

13 lines
151 B
Verilog

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