aboutsummaryrefslogtreecommitdiffstats
path: root/tests/verilog/always_comb_nolatch_6.ys
diff options
context:
space:
mode:
Diffstat (limited to 'tests/verilog/always_comb_nolatch_6.ys')
-rw-r--r--tests/verilog/always_comb_nolatch_6.ys15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/verilog/always_comb_nolatch_6.ys b/tests/verilog/always_comb_nolatch_6.ys
new file mode 100644
index 000000000..90ee78a68
--- /dev/null
+++ b/tests/verilog/always_comb_nolatch_6.ys
@@ -0,0 +1,15 @@
+read_verilog -sv <<EOF
+module top(input wire x, y, output reg z);
+function automatic f;
+ input inp;
+ for (int i = 0; i < 1; i++)
+ f = inp + 0;
+endfunction
+always_comb
+ if (y)
+ z = f(x);
+ else
+ z = 0;
+endmodule
+EOF
+proc