Files
sv2v/test/error/struct_unknown_field.sv

10 lines
214 B
Systemverilog
Raw Permalink Normal View History

2021-03-09 14:18:37 -05:00
// pattern: field 'y' not found in struct packed \{..logic x;.\}
2021-10-17 21:40:12 -06:00
// location: struct_unknown_field.sv:8:5
2021-03-09 14:18:37 -05:00
module top;
struct packed {
logic x;
} x;
assign x.x = 1;
assign x.y = 0;
endmodule