Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
d4bc91e228686cd8ec9eee019b4f0db9b7bc26cb
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-16
/
16.12--property-prec.sv
blob: ea939a1d915e700a1146ea4157991771e5f83d5b [
file
] [
log
] [
blame
]
/*
:name: property_prec_test
:description: property with precondition test
:should_fail: 0
:tags: 16.12
*/
module
top
();
logic clk
;
logic a
;
logic b
;
assert
property
(
@(
posedge clk
)
a
|->
b
);
endmodule