module mod(input clk);
reg x, z;
wire y;
initial begin
$display(x, y, z);
z = 1;
x = @(posedge y or posedge clk) z;
end
endmodule