blob: b5e79e5fbaf32054b6f8425557d94a62b64c119b [file] [log] [blame]
/*
:name: fscanf_task
:description: $fscanf test
:should_fail: 0
:tags: 21.3
:type: simulation parsing
*/
module top();
int fd;
int c;
initial begin
fd = $fopen("tmp.txt", "w");
$fscanf(fd, "%d", c);
end
final
$fclose(fd);
endmodule