Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-16
/
16.2--assert-final.sv
blob: f9dc38dab117dbd01154884b0053001942c1187b [
file
] [
log
] [
blame
]
/*
:name: assert_final_test
:description: assert final test
:should_fail: 0
:tags: 16.4
*/
module
top
();
logic a
=
1
;
assert
final
(
a
!=
0
);
endmodule