-
Notifications
You must be signed in to change notification settings - Fork 264
Open
Labels
rejects-valid syntaxIf the parser wrongly rejects syntactically valid code (according to SV-2017).If the parser wrongly rejects syntactically valid code (according to SV-2017).
Description
Description
Verible reports a syntax error when parsing modules that use Non-ANSI Verilog port declarations.
Example of Failing Code
module test(a);
input var real a;
endmoduleError Message
test.sv:3:7-9: syntax error at token "var"
ANSI Version (Parses Successfully):
module test(input var real a);
endmoduleActual behavior:
Valid Non-ANSI code is rejected with a syntax error.
Verible Version
- Verible Version : (v0.0-3933)
Metadata
Metadata
Assignees
Labels
rejects-valid syntaxIf the parser wrongly rejects syntactically valid code (according to SV-2017).If the parser wrongly rejects syntactically valid code (according to SV-2017).