3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-08 02:15:20 +00:00

tests: add #2042 testcase

This commit is contained in:
Eddie Hung 2020-05-11 11:05:19 -07:00
parent b11cf67a81
commit e5ce5a4fd5

12
tests/verilog/bug2042.ys Normal file
View file

@ -0,0 +1,12 @@
logger -expect error "Non-ANSI style task/function arguments not currently supported" 1
read_verilog <<EOT
module Task_Test_Top
(
);
task SomeTaskName(a)
endtask
endmodule
EOT