We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 791e8c9 commit a39f687Copy full SHA for a39f687
examples/java/get.saw
@@ -9,7 +9,11 @@ jvm_verify c "get" [] false
9
j <- jvm_fresh_var "j" java_int;
10
jvm_precond {{ j <= 3 }};
11
jvm_execute_func [this, a, jvm_term j];
12
- // TODO: Update spec to say `a` is modified but not specified
+ // TODO: Add declaration to say that the entire array is modified.
13
+ jvm_unspecified_elem a 0;
14
+ jvm_unspecified_elem a 1;
15
+ jvm_unspecified_elem a 2;
16
+ jvm_unspecified_elem a 3;
17
jvm_return (jvm_term {{ j }});
18
}
19
abc;
0 commit comments