-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bot] Generate current state of CWhy prompts (#51)
* [bot][macos] Generate current state of CWhy prompts * [bot][ubuntu] Generate current state of CWhy prompts --------- Co-authored-by: github-actions <[email protected]>
- Loading branch information
1 parent
2a159a8
commit 2318f09
Showing
6 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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,26 @@ | ||
===================== Prompt ===================== | ||
This is my code: | ||
|
||
File `/Users/runner/work/cwhy/cwhy/tests/c++/include-header-typo.cpp`: | ||
``` | ||
1 #include "blank-header.hp" | ||
2 | ||
3 int main() { | ||
4 return 0; | ||
``` | ||
|
||
|
||
This is my error: | ||
``` | ||
/Users/runner/work/cwhy/cwhy/tests/c++/include-header-typo.cpp:1:10: fatal error: 'blank-header.hp' file not found | ||
#include "blank-header.hp" | ||
|
||
[...] | ||
|
||
^~~~~~~~~~~~~~~~~ | ||
1 error generated. | ||
``` | ||
|
||
|
||
What's the problem? If you can, suggest code to fix the issue. | ||
================================================== |
Empty file.
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,26 @@ | ||
===================== Prompt ===================== | ||
This is my code: | ||
|
||
File `/home/runner/work/cwhy/cwhy/tests/c++/include-header-typo.cpp`: | ||
``` | ||
1 #include "blank-header.hp" | ||
2 | ||
3 int main() { | ||
4 return 0; | ||
``` | ||
|
||
|
||
This is my error: | ||
``` | ||
/home/runner/work/cwhy/cwhy/tests/c++/include-header-typo.cpp:1:10: fatal error: 'blank-header.hp' file not found | ||
1 | #include "blank-header.hp" | ||
|
||
[...] | ||
|
||
| ^~~~~~~~~~~~~~~~~ | ||
1 error generated. | ||
``` | ||
|
||
|
||
What's the problem? If you can, suggest code to fix the issue. | ||
================================================== |
Empty file.
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,26 @@ | ||
===================== Prompt ===================== | ||
This is my code: | ||
|
||
File `/home/runner/work/cwhy/cwhy/tests/c++/include-header-typo.cpp`: | ||
``` | ||
1 #include "blank-header.hp" | ||
2 | ||
3 int main() { | ||
4 return 0; | ||
``` | ||
|
||
|
||
This is my error: | ||
``` | ||
/home/runner/work/cwhy/cwhy/tests/c++/include-header-typo.cpp:1:10: fatal error: blank-header.hp: No such file or directory | ||
1 | #include "blank-header.hp" | ||
|
||
[...] | ||
|
||
| ^~~~~~~~~~~~~~~~~ | ||
compilation terminated. | ||
``` | ||
|
||
|
||
What's the problem? If you can, suggest code to fix the issue. | ||
================================================== |