1localparam x = 'b1;
2
3initial begin
4  case (x)
5    1'b0: $write("no");
6    1'b1: $write("yes");
7  endcase
8  $finish;
9end
10