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