blob: 9a7cc4ce9d1f4c004d3d4d92633e1b1261b593ab [file] [log] [blame]
/*
:name: string_tolower
:description: string.tolower() tests
:should_fail: 0
:tags: 6.16.5
*/
module top();
string a = "Test";
string b = a.tolower();
endmodule