source: CIVL/mods/dev.civl.abc/examples/c/funcs.c

main
Last change on this file was aad342c, checked in by Stephen Siegel <siegel@…>, 3 years ago

Performing huge refactor to incorporate ABC, GMC, and SARL into CIVL repo and use Java modules.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5664 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 175 bytes
Line 
1int f(int a, int b);
2
3int f(int c, int d);
4
5/*@ executes_when k<g;
6 @ requires k>0;
7 @ ensures \result<1;
8 @*/
9int f(int k, int g){
10 return 0;
11}
12
13void main(){
14 f(0,0);
15}
Note: See TracBrowser for help on using the repository browser.