Skip to content

Commit

Permalink
Add one more test for Issue #139
Browse files Browse the repository at this point in the history
  • Loading branch information
janvrany committed Feb 21, 2024
1 parent 7b5de95 commit 7e36d26
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/SpriteLang-Tests/BoolGaloisConnectionTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,18 @@ let i2i = (i) => {
'
]

{ #category : #tests }
BoolGaloisConnectionTest >> testAlphaClash2 [
self proveSafe: '
⟦val f1 : x:int => y:int => int[z | z === (x + y + 3) ] ⟧
let f1 = (x,y) => {
let x = x + 1;
let y = y + x;
y + 2
};
'
]

{ #category : #tests }
BoolGaloisConnectionTest >> testB2I [
self proveSafe: '
Expand Down

0 comments on commit 7e36d26

Please sign in to comment.