blob: 3d9a676f81d51bde53aa10dcdeb72d20e9582725 [file] [log] [blame]
/*
:name: real-constants-illegal
:description: Examples of real literal constants
:should_fail: 1
:tags: 5.7.2
*/
module top();
logic [31:0] a;
initial begin;
a = .12;
a = 9.;
a = 4.E3;
a = .2e-7;
end
endmodule