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