sv-parser/sv-parser-pp/testcases/expected/IEEE18002017_keywords_m2_18002005.sv
2022-07-26 10:28:23 +02:00

9 lines
217 B
Systemverilog

`begin_keywords "1800-2005"
module m2 ();
// "logic" IS a reserved keyword in IEEE1800-2005.
// This module should pass both the preprocessor, but NOT the main parser.
reg [63:0] logic;
endmodule
`end_keywords