-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deal with deprecated negative operands. (#132)
- Loading branch information
1 parent
389f6c3
commit 26bb83c
Showing
8 changed files
with
11 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
brun -c '(/ 2 5)' '(-80001 73)' | ||
cost = 1125 | ||
-1096 | ||
FAIL: div operator with negative operands is deprecated (0xfec77f 73) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
brun -c '(/ 2 5)' '(80001 -73)' | ||
cost = 1125 | ||
-1096 | ||
FAIL: div operator with negative operands is deprecated (0x013881 -73) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
brun -c '(/ (q . -3) (q . 10))' | ||
cost = 1037 | ||
() | ||
FAIL: div operator with negative operands is deprecated (-3 10) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
brun -c '(/ (q . 3) (q . -10))' | ||
cost = 1037 | ||
() | ||
FAIL: div operator with negative operands is deprecated (i -10) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
brun -c '(/ (q . -3) (q . -10))' | ||
cost = 1037 | ||
() | ||
FAIL: div operator with negative operands is deprecated (-3 -10) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
brun '(/ (q . 0xffff) (q . 0xffff))' | ||
1 | ||
FAIL: div operator with negative operands is deprecated (0xffff 0xffff) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
brun '(/ (q . -1) (q . -1))' | ||
1 | ||
FAIL: div operator with negative operands is deprecated (-1 -1) |