blob: 81be6e3bac9d0acfc0d1d60e003b5c928949df20 [file] [log] [blame]
/*
:name: string_substr
:description: string.substr() tests
:should_fail: 0
:tags: 6.16.8
*/
module top();
string a = "Test";
string b = a.substr(1, 2);
endmodule