-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
24 additions
and
24 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,4 +1,4 @@ | ||
init-eq-assign-checks.chpl:1: error: Type 'InitEqOnly' uses compiler-generated default = but has a custom init= method. Please add a = function. | ||
init-eq-assign-checks.chpl:2: note: init= for 'InitEqOnly' defined here | ||
init-eq-assign-checks.chpl:4: error: Type 'AssignOnly' uses compiler-generated default init= but has a custom = function. Please add an init= method | ||
init-eq-assign-checks.chpl:5: note: = for 'AssignOnly' defined here | ||
init-eq-assign-checks.chpl:1: error: Type 'InitEqOnly' uses compiler-generated default '=' but has a custom 'init=' method. Please add a '=' function. | ||
init-eq-assign-checks.chpl:2: note: 'init=' for 'InitEqOnly' defined here | ||
init-eq-assign-checks.chpl:4: error: Type 'AssignOnly' uses compiler-generated default 'init=' but has a custom '=' function. Please add an 'init=' method | ||
init-eq-assign-checks.chpl:5: note: '=' for 'AssignOnly' defined here |
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 @@ | ||
init-eq-other-only.chpl:1: error: Type 'InitEqOtherOnly' uses compiler-generated default init= but also has a custom init= method. Please add an init= method with the same RHS type | ||
init-eq-other-only.chpl:4: note: init= for 'InitEqOtherOnly' defined here | ||
init-eq-other-only.chpl:1: error: Type 'InitEqOtherOnly' uses compiler-generated default 'init=' but also has a custom 'init=' method. Please add an 'init=' method with the same RHS type | ||
init-eq-other-only.chpl:4: note: 'init=' for 'InitEqOtherOnly' defined here |