blob: 639aff9122941334b19755002f81e30eb1664047 [file] [log] [blame]
/*
:name: printtimescale_hier_task
:description: $printtimescale hierarchy test
:should_fail: 0
:tags: 20.4
:type: simulation parsing
*/
`timescale 1 ms / 1 us
module top();
initial
$printtimescale(mod0.m);
endmodule
`timescale 1 us / 1 ns
module mod0();
mod1 m();
endmodule
`timescale 1 ns / 1 ps
module mod1();
initial
$display("mod1");
endmodule