mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-03 01:33:07 +02:00
Check that when port direction and data type are declared separately that an error is reported if the port direction has an explicit range specification, but the data type has not. This should even be the case if the data type has an implicit range, e.g `int` or a struct type. For vector types also check that it is an error if the ranges are not identical. Signed-off-by: Lars-Peter Clausen <[email protected]>
20 lines
389 B
Verilog
20 lines
389 B
Verilog
// Check that it is an error to declare a non-ANSI task port with implicit
|
|
// packed dimensions if it is later redeclared as a enum typed variable. Even if
|
|
// the size of the packed dimensions matches that of the size of the enum type.
|
|
|
|
typedef enum integer {
|
|
A, B
|
|
} T;
|
|
|
|
module test;
|
|
|
|
task t;
|
|
input [31:0] x;
|
|
T x;
|
|
$display("FAILED");
|
|
endtask
|
|
|
|
initial t(10);
|
|
|
|
endmodule
|