blob: c0cbfc1624356e1da3d8da11cae6d7c3e4614b8b [file] [log] [blame]
/*
:name: string_atoi
:description: string.atoi() tests
:should_fail: 0
:tags: 6.16.9
*/
module top();
string a = "1234";
int b = a.atoi();
endmodule