summaryrefslogtreecommitdiff
path: root/Chalice/tests/regressions/workitem-10198.chalice
diff options
context:
space:
mode:
Diffstat (limited to 'Chalice/tests/regressions/workitem-10198.chalice')
-rw-r--r--Chalice/tests/regressions/workitem-10198.chalice17
1 files changed, 0 insertions, 17 deletions
diff --git a/Chalice/tests/regressions/workitem-10198.chalice b/Chalice/tests/regressions/workitem-10198.chalice
deleted file mode 100644
index fd51977d..00000000
--- a/Chalice/tests/regressions/workitem-10198.chalice
+++ /dev/null
@@ -1,17 +0,0 @@
-class Cell { var x: int }
-
-class Test {
- method get() returns (c: Cell)
- ensures c != null
- lockchange c /* previosly, this introduced errors */
- {
- c := new Cell
- }
-
- /* method was needed to get Boogie errors */
- method testRd() // expected ERROR: method might lock/unlock more than allowed
- {
- var x: Cell
- call x := get()
- }
-} \ No newline at end of file