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