aboutsummaryrefslogtreecommitdiffstats
path: root/tests/various/rand_const.sv
diff options
context:
space:
mode:
Diffstat (limited to 'tests/various/rand_const.sv')
-rw-r--r--tests/various/rand_const.sv8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/various/rand_const.sv b/tests/various/rand_const.sv
new file mode 100644
index 000000000..be00812c0
--- /dev/null
+++ b/tests/various/rand_const.sv
@@ -0,0 +1,8 @@
+module top;
+ rand const reg rx;
+ const reg ry;
+ rand reg rz;
+ rand const integer ix;
+ const integer iy;
+ rand integer iz;
+endmodule