Add constant expression attribute to test

This commit is contained in:
Eddie Hung 2019-08-29 09:10:20 -07:00
parent 83ffec26cb
commit 67587bad7f
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@ module top(input i, output o);
sub s0(i, o);
endmodule
(* constant_expression=1+1?2*2:3/3 *)
module sub(input i, output o);
assign o = ~i;
endmodule