trip equal tests

This commit is contained in:
Todd Strader 2020-03-31 17:39:23 -04:00
parent bfe2760098
commit 7997ba08cb

View File

@ -93,6 +93,8 @@ module t();
initial begin
if (type(shortint) != type(shortint_v)) $stop();
if (type(shortint) !== type(shortint_v)) $stop();
if (type(int) === type(shortint_v)) $stop();
if (type(int) != type(int_v)) $stop();
if (type(longint) != type(longint_v)) $stop();
if (type(byte) != type(byte_v)) $stop();