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