blob: 99ecadd3ef242c6317c2a04cc74155c162bf249f [file] [log] [blame]
/*
:name: property_test
:description: property test
:should_fail: 0
:tags: 16.12
*/
module top();
logic clk;
logic a;
assert property ( @(posedge clk) (a == 1));
endmodule