-
Notifications
You must be signed in to change notification settings - Fork 428
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jade Abraham <[email protected]>
- Loading branch information
1 parent
358d20f
commit a782428
Showing
11 changed files
with
27 additions
and
10 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
2 changes: 1 addition & 1 deletion
2
test/library/standard/Sort/errors/error-multiple-interfaces.1.good
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 +1 @@ | ||
error-multiple-interfaces.chpl:16: error: The comparator R1 should only implement one sort comparator interface. | ||
error-multiple-interfaces.chpl:32: error: The comparator R1 should only implement one sort comparator interface. |
Empty file.
1 change: 0 additions & 1 deletion
1
test/library/standard/Sort/errors/error-multiple-interfaces.2.good
This file was deleted.
Oops, something went wrong.
Empty file.
1 change: 0 additions & 1 deletion
1
test/library/standard/Sort/errors/error-multiple-interfaces.3.good
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
test/library/standard/Sort/errors/error-multiple-interfaces.4.good
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 +1 @@ | ||
error-multiple-interfaces.chpl:16: error: The comparator R4 should only implement one sort comparator interface. | ||
error-multiple-interfaces.chpl:32: error: The comparator R4 should only implement one sort comparator interface. |
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
2 changes: 1 addition & 1 deletion
2
test/library/standard/Sort/errors/error-multiple-interfaces.compopts
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,4 +1,4 @@ | ||
-scomparator=R1 | ||
-scomparator=R2 | ||
-scomparator=R3 | ||
-scomparator=R4 | ||
-scomparator=R4 |
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,4 @@ | ||
-scomparator=boolean # errors-compare.boolean.good | ||
-scomparator=rec # errors-compare.rec.good | ||
-scomparator=str # errors-compare.str.good | ||
-scomparator=noKeyPart # errors-compare.noKeyPart.good |
2 changes: 2 additions & 0 deletions
2
test/library/standard/Sort/errors/errors-compare.noKeyPart.good
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
errors-compare.chpl:9: In function 'main': | ||
errors-compare.chpl:17: error: The comparator noKeyPart implements the keyPartComparator interface, but the keyPart method is not implemented |