Files
sv2v/test/error/assert_deferred_nonzero.sv
Zachary Snow f061e88214 cleanup error suite infrastructure
- error suite runs in both regular and verbose mode
- add helper for extracting "flags" from test files
- common assertMatch, assertNotMatch helpers
- remove unused assertExists helper
- fix un-escaped wildcard in assert_deferred_nonzero.sv
2021-10-05 14:25:10 -06:00

5 lines
140 B
Systemverilog

// pattern: assert_deferred_nonzero\.sv:3:21: Parse error: expected 0 after #, but found 1
module top;
initial assert #1 (1);
endmodule