summaryrefslogtreecommitdiff
path: root/tests/simple
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple')
-rw-r--r--tests/simple/vloghammer.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/simple/vloghammer.v b/tests/simple/vloghammer.v
index fffa3505..c705bfa7 100644
--- a/tests/simple/vloghammer.v
+++ b/tests/simple/vloghammer.v
@@ -73,3 +73,10 @@ module test10(a, b, c, y);
assign y = ^(a ? b : c);
endmodule
+module test11(a, b, y);
+ input signed [3:0] a;
+ input signed [3:0] b;
+ output signed [5:0] y;
+ assign y = -(5'd27);
+endmodule
+