We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 485171c commit a56fc64Copy full SHA for a56fc64
liquidjava-example/src/main/java/testSuite/ErrorDotNotationMultiple.java
@@ -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