1// tests whether both top and non-top words are built correctly
2wire signed[68:0] minus_sixteen = -16;
3wire signed[68:0] test = minus_sixteen >>> 2;
4
5initial begin
6    $write(test);
7    $finish;
8end
9