iverilog/ivtest/ivltests/br_ml20150315b.v

14 lines
268 B
Coq
Raw Normal View History

// Regression test for bug reported by Niels Moeller on
// 15-Mar-2015 via the iverilog-devel mailing list.
// Unpacked structs are not supported yet, but should
// be handled gracefully.
module test();
typedef struct {
logic value;
} data_t;
data_t d;
endmodule