diff options
Diffstat (limited to 'Chalice/tests/refinements/AngelicExec.chalice')
-rw-r--r-- | Chalice/tests/refinements/AngelicExec.chalice | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Chalice/tests/refinements/AngelicExec.chalice b/Chalice/tests/refinements/AngelicExec.chalice index 06ab9c83..582c3944 100644 --- a/Chalice/tests/refinements/AngelicExec.chalice +++ b/Chalice/tests/refinements/AngelicExec.chalice @@ -2,7 +2,7 @@ class A0 { method m(b: bool) {
var x;
if (b) {
- var x [0 <= x && x < 3];
+ spec x [0 <= x && x < 3];
} else {
x := 1;
}
|