Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
4e2abbf559b85d1c0b1dffd013a27b4b8c78dd2c
/
.
/
src
/
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