diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/verilog/bug2042-sv.ys | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/verilog/bug2042-sv.ys b/tests/verilog/bug2042-sv.ys index 9a0d419c8..e815d7fc5 100644 --- a/tests/verilog/bug2042-sv.ys +++ b/tests/verilog/bug2042-sv.ys @@ -21,6 +21,31 @@ sat -verify -prove-asserts design -reset +read_verilog -sv <<EOT +module Task_Test_Top +( +input a, +output b, c +); + + task SomeTaskName(x, output y, z); + y = ~x; + z = x; + endtask + + always @* + SomeTaskName(a, b, c); + + assert property (b == ~a); + assert property (c == a); + +endmodule +EOT +proc +sat -verify -prove-asserts + + +design -reset logger -expect error "syntax error, unexpected TOK_ENDTASK, expecting ';'" 1 read_verilog -sv <<EOT module Task_Test_Top |