blob: dba359dde7064253bb0f1f5c918238899adb0ee1 [file] [log] [blame]
/*
:name: structure-arrays
:description: Structure array assignment tests
:should_fail: 0
:tags: 5.10
*/
module top();
typedef struct {
int a;
int b;
} ms_t;
ms_t ms[1:0] = '{'{0, 0}, '{1, 1}};
endmodule