blob: 8488f3d021582b6ce811f1bb769ff85ce93dbe21 [file] [log] [blame]
/*
:name: structure
:description: Structure assignment tests
:should_fail: 0
:tags: 5.10
*/
module top();
typedef struct {
int a;
int b;
} ms_t;
ms_t ms;
initial begin;
ms = '{ 0, 1};
ms = '{ default:1, int:1};
ms = '{ int:0, int:1};
end
endmodule