RTL Inference

Consider the following combinational RTL:

always @(*) begin
    if (en)
        y = a;
end

What is most likely inferred for y?