mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-08-28 16:53:45 +02:00
Add regression tests that check that declaring a net of type class, dynamic array, queue or string result in an error. Signed-off-by: Lars-Peter Clausen <[email protected]>
13 lines
172 B
Verilog
13 lines
172 B
Verilog
// Check that declaring a net of a class type results in an error
|
|
|
|
module test;
|
|
class C;
|
|
endclass
|
|
|
|
wire C x;
|
|
|
|
initial begin
|
|
$display("FAILED");
|
|
end
|
|
endmodule
|