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