2020-08-09 10:31:04 -06:00
|
|
|
module top;
|
2020-08-12 21:47:24 -04:00
|
|
|
localparam FOO = "some useful string";
|
2020-08-09 10:31:04 -06:00
|
|
|
localparam type T = type(FOO);
|
2021-05-28 20:27:14 -04:00
|
|
|
localparam T BAR = "some other useful string"; // clipped
|
2020-08-09 10:31:04 -06:00
|
|
|
initial $display("'%s' '%s'", FOO, BAR);
|
|
|
|
|
endmodule
|