Skip to content

Commit a56fc64

Browse files
committed
Add Test
1 parent 485171c commit a56fc64

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Syntax Error
2+
package testSuite;
3+
4+
import liquidjava.specification.Ghost;
5+
import liquidjava.specification.Refinement;
6+
import liquidjava.specification.StateRefinement;
7+
8+
@Ghost("int size")
9+
public class ErrorDotNotationMultiple {
10+
11+
@StateRefinement(to="size() == 0")
12+
public ErrorDotNotationMultiple() {}
13+
14+
void test() {
15+
@Refinement("_ == this.not.size()")
16+
int x = 0;
17+
}
18+
}

0 commit comments

Comments
 (0)